Looking for a C# code parser

Posted by Blindy on Stack Overflow See other posts from Stack Overflow or by Blindy
Published on 2010-03-15T04:59:28Z Indexed on 2010/03/15 5:09 UTC
Read the original article Hit count: 257

Filed under:
|
|
|
|

I'm looking for a set of classes (preferably in the .net framework) that will parse C# code and return a list of functions with parameters, classes with their methods, properties etc. Ideally it would provide all that's needed to build my own intellisense.

I have a feeling something like this should be in the .net framework, given all the reflection stuff they offer, but if not then an open source alternative is good enough.

What I'm trying to build is basically something like Snippet Compiler, but with a twist. I'm trying to figure out how to get the code dom first.

I tried googling for this but I'm not sure what the correct term for this is so I came up empty.

© Stack Overflow or respective owner

Related posts about c#

Related posts about code