home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / C#ed / Setup.exe / MyArray.cs < prev    next >
Text File  |  2000-08-23  |  339b  |  15 lines

  1. using System;
  2.  
  3. class MyArray
  4. {
  5.     public static void Main() 
  6.     {
  7.         int[] nArray = new int[] {10, 20, 30, 40, 50, 60, 70, 80, 90, 100};
  8.         
  9.         Console.WriteLine("nArray has {0} elements:", nArray.Length);
  10.         
  11.         for(int cnt=0; cnt<nArray.Length; cnt++)
  12.             Console.WriteLine("The value of element {0} is {1}", cnt, nArray[cnt]);
  13.     }
  14. }
  15.