Parser for C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:13:04Zhttp://stackoverflow.com/feeds/question/81406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81406/parser-for-c3Parser for C#madgnome2008-09-17T09:18:14Z2008-10-29T20:55:49Z
<p>Which parsers are available for parsing C# code?</p>
<p>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.</p>
http://stackoverflow.com/questions/81406/parser-for-c/81415#814154Answer by Galwegian for Parser for C#Galwegian2008-09-17T09:19:40Z2008-09-17T09:19:40Z<p><a href="http://www.codeplex.com/csparser" rel="nofollow">http://www.codeplex.com/csparser</a></p>
http://stackoverflow.com/questions/81406/parser-for-c/81419#81419-2Answer by pb for Parser for C#pb2008-09-17T09:20:13Z2008-09-17T09:20:13Z<p><a href="http://search.live.com/results.aspx?q=c%23+parser&src=IE-SearchBox&Form=IE8SRC" rel="nofollow">Several parsers</a></p>
http://stackoverflow.com/questions/81406/parser-for-c/81427#814277Answer by madgnome for Parser for C#madgnome2008-09-17T09:21:39Z2008-10-09T06:13:00Z<p>Works on source code:</p>
<ul>
<li><a href="http://www.codeplex.com/csparser" rel="nofollow">CSParser</a>:
From C# 1.0 to 2.0, open-source</li>
<li><a href="http://www.csharpparser.com/csparser.php" rel="nofollow">Metaspec C# Parser</a>:
From C# 1.0 to 3.0, commercial product (about 5000$)</li>
<li><a href="http://www.sharprecognize.com/" rel="nofollow">#recognize!</a>:
From C# 1.0 to 3.0, commercial product (about 900€) (answer by <a href="http://stackoverflow.com/questions/81406/parser-for-c#185380">SharpRecognize</a>)</li>
<li><a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop Parser</a> (answer by <a href="http://stackoverflow.com/questions/81406/parser-for-c#81434">Akselsson</a>)</li>
</ul>
<p>Works on assembly:</p>
<ul>
<li>System.Reflection</li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3389F7E4-0E55-4A4D-BC74-4AEABB17997B&displaylang=en" rel="nofollow">FxCop API</a>:
From C# 1.0 to 3.0, Microsoft licence, not for commercial use as services</li>
<li><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a>:
From C# 1.0 to 3.0, open-source</li>
</ul>
<p>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)</p>
http://stackoverflow.com/questions/81406/parser-for-c/81429#814294Answer by aku for Parser for C#aku2008-09-17T09:22:25Z2008-09-17T09:22:25Z<p><a href="http://www.mono-project.com/" rel="nofollow">Mono</a> (open source) includes C# compiler (and of course parser)</p>
http://stackoverflow.com/questions/81406/parser-for-c/81434#814342Answer by Akselsson for Parser for C#Akselsson2008-09-17T09:22:47Z2008-09-17T09:22:47Z<p><a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a>, an open source IDE, comes with a visitor-based code parser which works really well. It can be used independently of the IDE.</p>
http://stackoverflow.com/questions/81406/parser-for-c/81473#814732Answer by Hallgrim for Parser for C#Hallgrim2008-09-17T09:32:00Z2008-09-17T09:32:00Z<p>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?</p>
http://stackoverflow.com/questions/81406/parser-for-c/185380#1853800Answer by SharpRecognize for Parser for C#SharpRecognize2008-10-08T23:42:47Z2008-10-08T23:42:47Z<p>Try this:
www.SharpRecognize.com</p>
http://stackoverflow.com/questions/81406/parser-for-c/186103#186103-2Answer by ControlBreak for Parser for C#ControlBreak2008-10-09T06:19:55Z2008-10-09T06:19:55Z<p>You may want to give <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> a try.</p>
http://stackoverflow.com/questions/81406/parser-for-c/186117#1861170Answer by leppie for Parser for C#leppie2008-10-09T06:26:05Z2008-10-09T06:26:05Z<p><a href="http://plas.fit.qut.edu.au/gppg/" rel="nofollow">GPPG</a> might be of use, if you are willing to write your own parser (which is fun). </p>
http://stackoverflow.com/questions/81406/parser-for-c/231082#2310820Answer by sbeskur for Parser for C#sbeskur2008-10-23T19:20:47Z2008-10-29T20:55:49Z<p>Have a look at <a href="http://www.devincook.com/goldparser/" rel="nofollow">Gold Parser</a>. 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.</p>