Parser for C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:13:04Z http://stackoverflow.com/feeds/question/81406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81406/parser-for-c 3 Parser for C# madgnome 2008-09-17T09:18:14Z 2008-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#81415 4 Answer by Galwegian for Parser for C# Galwegian 2008-09-17T09:19:40Z 2008-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 -2 Answer by pb for Parser for C# pb 2008-09-17T09:20:13Z 2008-09-17T09:20:13Z <p><a href="http://search.live.com/results.aspx?q=c%23+parser&amp;src=IE-SearchBox&amp;Form=IE8SRC" rel="nofollow">Several parsers</a></p> http://stackoverflow.com/questions/81406/parser-for-c/81427#81427 7 Answer by madgnome for Parser for C# madgnome 2008-09-17T09:21:39Z 2008-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&amp;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#81429 4 Answer by aku for Parser for C# aku 2008-09-17T09:22:25Z 2008-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#81434 2 Answer by Akselsson for Parser for C# Akselsson 2008-09-17T09:22:47Z 2008-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#81473 2 Answer by Hallgrim for Parser for C# Hallgrim 2008-09-17T09:32:00Z 2008-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#185380 0 Answer by SharpRecognize for Parser for C# SharpRecognize 2008-10-08T23:42:47Z 2008-10-08T23:42:47Z <p>Try this: www.SharpRecognize.com</p> http://stackoverflow.com/questions/81406/parser-for-c/186103#186103 -2 Answer by ControlBreak for Parser for C# ControlBreak 2008-10-09T06:19:55Z 2008-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#186117 0 Answer by leppie for Parser for C# leppie 2008-10-09T06:26:05Z 2008-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#231082 0 Answer by sbeskur for Parser for C# sbeskur 2008-10-23T19:20:47Z 2008-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>