View Single Post
Old 01-15-2009, 09:22 PM   #1 (permalink)
BioHazard90
 
Newb Techie

Join Date: Nov 2008

Posts: 2

BioHazard90 is on a distinguished road

Default instantiation in C#

Code:
class MyProgram
{
    static void Main()
    {
        int[] integers;            // declare array
        integers = new int[10];    // size array
    }
}
In which line is the array actually instantiated?
BioHazard90 is offline