Is it possible to get the name of another method in the same class but without using a manually written string?
class MyClass {
    private void doThis()
    {
        // Wanted something like this
        print(otherMethod.name.ToString());
    }   
    private void otherMethod()
    {
    }
}
You may ask why: well the reason is that I must invoke the method later on like this Invoke("otherMethod"), however I don't want to hardcode this string myself as I can't refactor it anymore within the project.
 
     
     
     
    