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

sizeof() 연산자를 사용하여 C#에서 데이터 유형 또는 변수의 크기를 찾는 방법

<시간/>

sizeof() 데이터 유형은 데이터 유형의 크기를 반환합니다. int 데이터 유형의 크기를 찾아야 한다고 가정해 봅시다 -

sizeof(int);

이중 데이터 유형의 경우

sizeof(double);

다양한 데이터 유형의 크기를 찾기 위한 전체 예를 살펴보겠습니다. −

using System;

namespace Demo {

   class Program {

      static void Main(string[] args) {

         Console.WriteLine("The size of int is {0}", sizeof(int));
         Console.WriteLine("The size of int is {0}", sizeof(char));
         Console.WriteLine("The size of short is {0}", sizeof(short));
         Console.WriteLine("The size of long is {0}", sizeof(long));
         Console.WriteLine("The size of double is {0}", sizeof(double));

         Console.ReadLine();
      }
   }
}

출력

The size of int is 4
The size of int is 2
The size of short is 2
The size of long is 8
The size of double is 8