Search:

Type: Posts; User: Json

Search: Search took 0.07 seconds.

  1. Thread: Break it down

    by Json
    Replies
    5
    Views
    1,721

    Re: Break it down

    True, good point.

    // Json
  2. Thread: Break it down

    by Json
    Replies
    5
    Views
    1,721

    Re: Break it down

    Just to clarify some things.


    Car[] cars1;

    Now this will result in a null reference because you are just creating a reference but not an actual array object.



    Car[] cars2 = new Car[10];
Results 1 to 2 of 2