2
Answers

how can find the list of method names of a class in c#

Hi ,
how can find the list of method names of a class and interface in c#. I means i have created some class and each class has some methods i want to get the list of all methods name of all class.For example class A has three method AM1(),AM2(),AM() and class B has 2 methods BM1(),BM2(). I want to get output as Class A having AM1(),AM2(),AM3() Class B having BM1(),BM2()
Methods. How can we get it.
Thanks in advance.
Answers (2)