View Single Post
Old 01-16-2009, 12:17 PM   #3 (permalink)
jaeusm
 
Software Developer

Join Date: Mar 2006

Location: Columbus, OH

Posts: 569

jaeusm is on a distinguished road

Default Re: instantiation in C#

Instantiated means an instance of a type has been created. In C#, that is typically accomplished using the 'new' keyword. In your specific case, the second line of code in the Main method instantiates the array.
jaeusm is offline