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

  1. using System;
  2.  
  3. class MyArray
  4. {
  5.     public static void Main() 
  6.     {
  7.         string[] nStrArray = new string[] {"Beethoven", "Mozart", "Strauss"};
  8.         
  9.         Console.WriteLine("Some great composers:");
  10.         
  11.         for(int cnt=0; cnt<nStrArray.Length; cnt++)
  12.             Console.WriteLine(nStrArray[cnt]);
  13.     }
  14. }
  15.