C#에서 배열을 정의하려면 −
int[] runs = new int[10];
이제 같은 줄에서 배열을 초기화합시다 -
int[] runs = new int[5] {99, 92, 95};
다음은 배열을 선언, 초기화 및 표시하는 방법을 보여주는 예입니다. −
예시
using System; namespace Program { class Demo { static void Main(string[] args) { int[] runs = new int[3] {149, 123, 257}; int j; for (j = 0; j < 3; j++ ) { Console.WriteLine("Score of Cricketer[{0}] = {1}", j, runs[j]); } Console.ReadKey(); } } }