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

C#의 Byte.MinValue 필드

<시간/>

C#의 Byte.MinValue 필드는 Byte의 가능한 가장 작은 값을 나타내는 데 사용됩니다.

구문

다음은 구문입니다 -

public const byte MinValue = 0;

예시

이제 Byte.MinValue 메서드를 구현하는 예를 살펴보겠습니다.

using System;
public class Demo {
   public static void Main(){
      byte val;
      val = Byte.MinValue;
      Console.WriteLine("Minimum Value (Byte) = "+val);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Minimum Value (Byte) = 0