Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

가능한 모든 C# 배열 초기화 구문은 무엇입니까?

<시간/>

배열은 C#에서 여러 가지 방법으로 초기화할 수 있습니다. 몇 가지 예를 살펴보겠습니다.

방법 1

배열의 크기를 사용합니다.

int [] marks = new int[5] { 99, 98, 92, 97, 95};

방법 2

크기를 생략합니다.

int [] marks = new int[] { 99, 98, 92, 97, 95};

방법 3

선언 시 초기화 중입니다.

int [] marks = { 99, 98, 92, 97, 95};

C#에서 배열을 초기화하는 방법 중 하나를 살펴보겠습니다.

예시

using System;
namespace Demo {
   class MyArray {
      static void Main(string[] args) {
         int [] n = new int[10]; /* n is an array of 10 integers */
         int i,j;
         /* initialize elements of array n */
         for ( i = 0; i < 10; i++ ) {
            n[ i ] = i + 100;
         }
         /* output each array element's value */
         for (j = 0; j < 10; j++ ) {
            Console.WriteLine("Element[{0}] = {1}", j, n[j]);
         }
         Console.ReadKey();
      }
   }
}

출력

Element[0] = 100
Element[1] = 101
Element[2] = 102
Element[3] = 103
Element[4] = 104
Element[5] = 105
Element[6] = 106
Element[7] = 107
Element[8] = 108
Element[9] = 109