0
I’m studying C# and came across the SyntaxTree
while reading about Roslyn
.
I also read the documentation of Microsoft itself on the link: Introduction to syntax analysis
However I still have two doubts, just to fix the content I’m studying.
Doubts are:
Where Syntaxtree can be really useful in my application?
When should I use?
Thank you.
For most applications for nothing. It is useful if you are doing some static code analyzer or some similar tool.
– Maniero