I have a static method [Method1] in my class, which calls another method [Method2] in the same class and is not a static method. But this is a no-no. I get this error:
Within a static method, you do not have an instance of the class. So it will be impossible to call an instance method on an instance when no instance exists.