Array Class serves as a base class of its type but we cannot create it object but we can create its instance. Array class provides various methods and properties which are very helpful in array manipulation.Following program demonstrate them.static void Main(string[] args){Array ar= Array.CreateInstance(typeof(string),3); //Create an Instance having String type 3 elementsar.SetValue(“India”,0); //Storing Element and [...]
Filed under: Uncategorized | Leave a Comment »

