How do you get summary info for a method using Reflection
Hi All,
I am building a dynamic properties window similar to that found in Visual Studio. Using reflection I have been able to display all of the properties and methods for any of my objects or classes. What I would like to do next is display the summary info for each method or property. Anyone have any ideas as to how to do this? By summary info, I mean the info defined by:
///
/// Description of function.....
///
public void TestFunction()
Since this info is displayed in the Visual Studio properties window and is also accessible when typing "object." I was hoping I would be able to access this through code.
Thanks in advance!
JP