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

C#의 Convert.ToByte 메서드

<시간/>

Convert.ToByte 메서드는 지정된 값을 8비트 부호 없는 정수로 변환하는 데 사용됩니다.

char 변수가 있다고 가정해 보겠습니다.

Char charVal = ‘a’;

이제 8비트 부호 없는 정수로 변환합니다.

byte byteVal = Convert.ToByte(charVal);

이제 다른 예를 살펴보겠습니다.

using System;
public class Demo {
   public static void Main() {
      char[] charVal = { 'p', 'q', 'r', 's' };
      foreach (char c in charVal) {
         byte byteVal = Convert.ToByte(c);
         Console.WriteLine("{0} is converted to = {1}", c, byteVal);
      }
   }
}

출력

p is converted to = 112
q is converted to = 113
r is converted to = 114
s is converted to = 115