vote up 3 vote down star
6

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.

flag

use google much? – pb Sep 17 '08 at 9:24
Goo..what? If I ask here, that's because I don't find what I want on google. Thanks for your participation. – madgnome Sep 17 '08 at 9:28
My answer was a not so subtle hint, that your question should be more detailed to get the answer you're looking for. – pb Sep 17 '08 at 9:41

10 Answers

vote up 7 vote down check

Works on source code:

Works on assembly:

  • System.Reflection
  • FxCop API: From C# 1.0 to 3.0, Microsoft licence, not for commercial use as services
  • Mono.Cecil: From C# 1.0 to 3.0, open-source

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)

link|flag
vote up 4 vote down

http://www.codeplex.com/csparser

link|flag
vote up 4 vote down

Mono (open source) includes C# compiler (and of course parser)

link|flag
What is the advantage of using Mono over other parser? Can i get info of the AST of a C# program using a visitor? If so, can u direct me to the page that shows the page for that? – yeeen Sep 17 at 17:20
vote up 2 vote down

SharpDevelop, an open source IDE, comes with a visitor-based code parser which works really well. It can be used independently of the IDE.

link|flag
vote up 2 vote down

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?

link|flag
Reflection is a bad way to do static analysis; it provides only the information that the reflection-logic can extract (e.g., "names of methods in class". It does not provide detail information ("what's the right hand side of this assignment?") and so severely limits that kind of static analysis one can do. – Ira Baxter Aug 25 at 18:20
@Ira Baxter There are some limitations, but remember that you can also get the IL code via reflection. This means you can understand what methods are called, what are assigned to which variables, etc. I cannot think of many cases where it isn't enough. Just look at what all the Reflector plugins can do. – Hallgrim Aug 26 at 11:34
vote up 0 vote down

Try this: www.SharpRecognize.com

link|flag
vote up 0 vote down

GPPG might be of use, if you are willing to write your own parser (which is fun).

link|flag
vote up 0 vote down

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.

link|flag
The OP asked for something that can parser C#, not something in C# that parse something else. – Ira Baxter Aug 9 at 7:50
vote up -2 vote down

Several parsers

link|flag
vote up -2 vote down

You may want to give NDepend a try.

link|flag
And NDepend is related to parsing... how? – Krzysztof Koźmic Oct 23 '08 at 19:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.