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 >
Wrap
Text File
|
2000-09-16
|
289b
|
15 lines
using System;
class MyArray
{
public static void Main()
{
string[] nStrArray = new string[] {"Beethoven", "Mozart", "Strauss"};
Console.WriteLine("Some great composers:");
for(int cnt=0; cnt<nStrArray.Length; cnt++)
Console.WriteLine(nStrArray[cnt]);
}
}