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

C#의 Convert.ToUInt16 메서드

<시간/>

Convert.ToUInt16 메서드를 사용하여 지정된 값을 16비트 부호 없는 정수로 변환합니다.

다음은 문자열입니다 -

string str = "1129";

이제 16비트 부호 없는 정수로 변환해 보겠습니다.

ushort res;
res = Convert.ToUInt16(str);

다음은 완전한 예입니다 -

using System;
public class Demo {
   public static void Main() {
      string str = "1307";
      ushort res;
      res = Convert.ToUInt16(str);
      Console.WriteLine("Converted string '{0}' to {1}", str, res);
   }
}

출력

Converted string '1307' to 1307