what do u mean by Array in C Sharp
| Array is a group of same type of datatype variable that shared a common name .The ability to use a single name to represent a collections of item is an array.There are manily three types of array.
*One-Dimensinal Array *Two-Dimensinal Array*Multi-Dimensinal Array There are three steps include to create a Array(1) Declare an array (2)Creating memory location(3)Putting values into the memory location Declare the Array |
|
| :-int[] counter;(declare int array)
Creating of Array:-arrayname=new type[size]; putting values in array:-number=new int[5];number[0]=35; | |
