Which parsers are available for parsing C# code? [closed]

Works on source code:

Works on assembly:

The problem with assembly “parsing” is that we have less informations about line and file (the informations is based on .pdb file, and Pdb contains lines informations only for methods)

I personnaly recommend Mono.Cecil and NRefactory.

Leave a Comment