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 >
Wrap
Text File
|
2000-08-23
|
339b
|
15 lines
using System;
class MyArray
{
public static void Main()
{
int[] nArray = new int[] {10, 20, 30, 40, 50, 60, 70, 80, 90, 100};
Console.WriteLine("nArray has {0} elements:", nArray.Length);
for(int cnt=0; cnt<nArray.Length; cnt++)
Console.WriteLine("The value of element {0} is {1}", cnt, nArray[cnt]);
}
}