Convert.ToUInt64() 메서드를 사용하여 지정된 값을 64비트 부호 없는 정수로 변환합니다.
다음은 우리의 캐릭터입니다.
char ch = 'a';
이제 64비트 부호 없는 정수로 변환해 보겠습니다.
ulong res; res = Convert.ToUInt64(ch);
다음은 완전한 예입니다.
예시
using System; public class Demo { public static void Main() { char ch = 'a'; ulong res; res = Convert.ToUInt64(ch); Console.WriteLine("Converted char value '{0}' to {1}", ch, res); } }
출력
Converted char value 'a' to 97