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

C#에서 배열의 크기를 어떻게 결정합니까?

<시간/>

먼저 배열을 설정하십시오 -

int[] arr = {6, 3, 8, 4};

이제 Length 속성을 사용하여 배열의 크기를 가져옵니다. -

arr.Length

전체 코드를 보자 -

예시

using System;
namespace Demo {
   public class Demo {
      public static void Main(string[] args) {
         int[] arr = {6, 3, 8, 4};
         Console.WriteLine("Array...");
         foreach (int i in arr) {
            Console.Write(i + " ");
         }
         Console.WriteLine("\nSize of Array: "+arr.Length);
      }
   }
}

출력

Array...
6 3 8 4
Size of Array: 4