C#.Net tutorial in Telugu - Arrays - Single Dimension Array | ottit
#ottit C#.Net tutorial in Telugu - Arrays - Single Dimension Array - ottit About Array : When we want to process group of values of same type then arrays are very useful. In C# arrays are objects , so array becomes reference type. For both value type and reference types arrays are created. Which type of values are allowed to store in array is decided by array type. To store any type of data array need to be created of type Object. You can store multiple values of the same type in an array data structure. Array is a collection of same type of values identified by single name and stored at continuous memory locations. Array values are processed using array name and index number. Index starts from 0 (Zero) and ends with array size minus one (array size -1). You declare an array by specifying the type of its elements. If you want the array to store elements of any type, you can specify object as its type. In the unified type system of C#, all types, predefined and user-defined, reference types and value types, inherit directly or indirectly from Object.
Download
0 formatsNo download links available.