I would like to be able to parse vb.net code files, so I can examine the collection of Subs, Functions (and their contents, including comments), private variables, etc.
I can open the actual source code files.
So, for example, if I have:
Public Function FunctionOne(arg1 As String, arg2 as String) as Integer
here is some code
''
End Function
Public Sub FunctionOne(arg1 As integer, arg2 as integer)
here is some code
''
End Sub
I would like to be able to analyze all subsets and functions and all the code between the Public Function and the End Function (in fact, it would be nice to be able to include either just the code inside or the definition of the whole function.
It would seem that this will cause some sort of parsing library, as well as pretty decent regular expression skills.
Any suggestions?
UPDATE:
, , , , , , , .