HI WELCOME TO SIRIS

C# Array class

Leave a Comment
C# provides an Array class to deal with array related operations. It provides methods for creating, manipulating, searching, and sorting elements of an array. This class works as the base class for all arrays in the .NET programming environment.

C# Array class Signature

  1. [SerializableAttribute]  
  2. [ComVisibleAttribute(true)]  
  3. public abstract class Array : ICloneable, IList, ICollection,   
  4. IEnumerable, IStructuralComparable, IStructuralEquatable  

Note: In C#, Array is not part of collection but considered as collection because it is based on the IList interface.

C# Array Properties

PropertyDescription
IsFixedSizeIt is used to get a value indicating whether the Array has a fixed size or not.
IsReadOnlyIt is used to check that the Array is read-only or not.
IsSynchronizedIt is used to check that access to the Array is synchronized or not.
LengthIt is used to get the total number of elements in all the dimensions of the Array.
LongLengthIt is used to get a 64-bit integer that represents the total number of elements in all the dimensions of the Array.
RankIt is used to get the rank (number of dimensions) of the Array.
SyncRootIt is used to get an object that can be used to synchronize access to the Array.

C# Array Methods

MethodDescription
AsReadOnly<T>(T[])It returns a read-only wrapper for the specified array.
BinarySearch(Array,Int32,Int32,Object)It is used to search a range of elements in a one-dimensional sorted array for a value.
BinarySearch(Array,Object)It is used to search an entire one-dimensional sorted array for a specific element.
Clear(Array,Int32,Int32)It is used to set a range of elements in an array to the default value.
Clone()It is used to create a shallow copy of the Array.
Copy(Array,Array,Int32)It is used to copy elements of an array into another array by specifying starting index.
CopyTo(Array,Int32)It copies all the elements of the current one-dimensional array to the specified one-dimensional array starting at the specified destination array index
CreateInstance(Type,Int32)It is used to create a one-dimensional Array of the specified Type and length.
Empty<T>()It is used to return an empty array.
Finalize()It is used to free resources and perform cleanup operations.
Find<T>(T[],Predicate<T>)It is used to search for an element that matches the conditions defined by the specified predicate.
IndexOf(Array,Object)It is used to search for the specified object and returns the index of its first occurrence in a one-dimensional array.
Initialize()It is used to initialize every element of the value-type Array by calling the default constructor of the value type.
Reverse(Array)It is used to reverse the sequence of the elements in the entire one-dimensional Array.
Sort(Array)It is used to sort the elements in an entire one-dimensional Array.
ToString()It is used to return a string that represents the current object.

C# Array Example

  1. using System;  
  2. namespace CSharpProgram  
  3. {  
  4.     class Program  
  5.     {  
  6.         static void Main(string[] args)  
  7.         {  
  8.             // Creating an array  
  9.             int[] arr = new int[6] { 5, 8, 9, 25, 0, 7 };  
  10.             // Creating an empty array  
  11.             int[] arr2 = new int[6];  
  12.             // Displaying length of array  
  13.             Console.WriteLine("length of first array: "+arr.Length);  
  14.             // Sorting array  
  15.             Array.Sort(arr);  
  16.             Console.Write("First array elements: ");  
  17.             // Displaying sorted array  
  18.             PrintArray(arr);  
  19.             // Finding index of an array element  
  20.             Console.WriteLine("\nIndex position of 25 is "+Array.IndexOf(arr,25));  
  21.             // Coping first array to empty array  
  22.             Array.Copy(arr, arr2, arr.Length);  
  23.             Console.Write("Second array elements: ");  
  24.             // Displaying second array  
  25.             PrintArray(arr2);  
  26.             Array.Reverse(arr);  
  27.             Console.Write("\nFirst Array elements in reverse order: ");  
  28.             PrintArray(arr);  
  29.         }  
  30.         // User defined method for iterating array elements  
  31.         static void PrintArray(int[] arr)  
  32.         {  
  33.             foreach (Object elem in arr)  
  34.             {  
  35.                 Console.Write(elem+" ");  
  36.             }  
  37.         }  
  38.     }  
  39. }  
Output:
length of first array: 6
First array elements: 0 5 7 8 9 25
Index position of 25 is 5
Second array elements: 0 5 7 8 9 25
First Array elements in reverse order: 25 9 8 7 5 0

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.