Is there a way for me to be returned a list of all methods of a target class in the form of an array of strings at runtime in C# other than parsing all the documentation for that class? I want to emulate what some IDE's do with suggesting methods as someone types a code segment.
So a method that would work (ideally) like so:
getMethods(foo.GetType())
And I would be returned a list of foo's methods.