/******************************************************************************** Copyright 2008 Rick Miller and Pulp Free Press - All Rights Reserved The source code contained within this file is intended for educational purposes only. No warranty as to the quality of the code is expressed or implied. Feel free to use this code provided you include the copyright notice in its entirety. **********************************************************************************/ using System; public class IntArrayTest { static void Main(){ int[] int_array = new int[10]; Console.WriteLine("int_array has rank of " + int_array.Rank); Console.WriteLine("int_array has " + int_array.Length + " total elements"); Console.WriteLine("The number of elements in the first (and only) rank is " + int_array.GetLength(0)); Console.WriteLine(int_array.GetType()); for(int i=0; i