Which parsers are available for parsing C# code?
I'm looking for a C# parser that can be used in C# and give me access to line and file informations about each artefact of the analysed code.
|
6
|
|||||||
|
|
|
Have a look at Gold Parser. It has a very intuitive IU that lets you interactively test your grammar and generate C# code. There are plenty of examples available with it and it is completely free. |
|||
|
|
|
GPPG might be of use, if you are willing to write your own parser (which is fun). |
|||
|
|
|
|
You may want to give NDepend a try. |
||
|
|
|
Try this: www.SharpRecognize.com |
||
|
|
|
|
Consider to use reflection on a built binary instead of parsing the C# code directly. The reflection API is really easy to use and perhaps you can get all the information you need? |
||||
|
|
|
SharpDevelop, an open source IDE, comes with a visitor-based code parser which works really well. It can be used independently of the IDE. |
||
|
|
|
|
Mono (open source) includes C# compiler (and of course parser) |
||
|
|
|
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) |
|||
|
|