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