Supposably, I have this class:
Class ExampleClass {
public firstMethod(){
// Do something
}
public secondMethod(){
//Do something with invoke firstMethod
}
}
How can I invoke first method from another correctly? (Simple "firstMethod()" is not working).