|
이 문서는 기계로 번역한 것입니다. 원본 텍스트를 보려면 포인터를 문서의 문장 위로 올리십시오. 추가 정보
|
번역
원본
|
Convert.ToUInt64 메서드 (Byte)
.NET Framework 4.5
이 API는 CLS 규격이 아닙니다. 네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)
매개 변수
- value
- 형식: System.Byte
변환할 8비트 부호 없는 정수입니다.
byte[] bytes = { Byte.MinValue, 14, 122, Byte.MaxValue}; ulong result; foreach (byte byteValue in bytes) { result = Convert.ToUInt64(byteValue); Console.WriteLine("Converted the {0} value {1} to the {2} value {3}.", byteValue.GetType().Name, byteValue, result.GetType().Name, result); } // The example displays the following output: // Converted the Byte value 0 to the UInt64 value 0. // Converted the Byte value 14 to the UInt64 value 14. // Converted the Byte value 122 to the UInt64 value 122. // Converted the Byte value 255 to the UInt64 value 255.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008(서버 코어 역할은 지원되지 않음), Windows Server 2008 R2(서버 코어 역할은 SP1 이상에서 지원, Itanium은 지원되지 않음)
.NET Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.