tags:

views:

165

answers:

2

Does somebody know if someone has created a Visual basic parser to CodeDom (ie, it takes VB.NET as input and create a CodeCompileUnit graph) ?

SOLUTION

I've retrieved the source code of SharpDevelop, and used their parser, it works just fine !

+1  A: 

Have you checked the CodeDom namespace from the .NET framework?

Eric
Yes there is no parsing, but I found a solution see my edit
Nicolas Dorier
A: 

What class did you use? I need to use the parser too, but I don't know where to look in the whole SharpDevelop source code.

alexander.uv