Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Re: Hey guys, I'm having a little trouble working with multiple classes.

    Your terminology is confusing.
    You don't call classes. You call methods. A method belongs to a class.
    You can call methods from within a method.
    To call methods in another class, you need a...
  2. Re: Hey guys, I'm having a little trouble working with multiple classes.

    Not sure what you mean by "calling" a class.
    Do you mean creating an instance of the class? Use the new statement:
    AClass aClsRef = new AClass(); // Create an instance of AClass

    To call...
Results 1 to 2 of 2