i am in the process of creation of simple Document Map for the following C# source.
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public string DoSomething(string x)
{
return "Hello " + x;
}
}
The results should be presented in treeview or listview, in following manner:
Person
-- Name
-- Age
-- DoSomething()
So, question is, is there a regex or library which handles C# source code?