I wrote a class and I want to return the names of function which I implemented inside the class.
public class cls
{
public static string fun()
{
//code
}
}
Simply I want to know how to know the name of the function (which is fun), not the return value of that function.
See How To: Obtain Method Name Programmatically For Tracing