System::BitConverter::ToString 메서드

BitConverter::ToString(const ArrayPtr<uint8_t>&, bool, const String&) method

지정된 바이트 배열의 모든 값을 16진수 문자열 표현으로 변환합니다. 16진수 표기에서 사용할 문자 대소문자와 인접한 바이트 쌍 사이에 삽입되는 구분자는 해당 인수들을 통해 지정됩니다.

static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, bool uppercase=true, const String &separator=u"-")
매개변수형식설명
valueconst ArrayPtr<uint8_t>&변환할 바이트를 포함하는 Array
대문자bool결과 16진수 표현에서 사용할 문자 대소문자를 지정합니다
구분자const String&결과 문자열에서 인접한 바이트 쌍 사이에 삽입되는 구분자로 사용되는 문자열

ReturnValue

String containing hexadecimal representation of the specified byte array

또 보기

BitConverter::ToString(const ArrayPtr<uint8_t>&, int) method

지정된 인덱스에서 시작하여 지정된 바이트 배열의 값을 16진수 문자열 표현으로 변환합니다.

static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, int startIndex)
매개변수형식설명
valueconst ArrayPtr<uint8_t>&변환할 바이트를 포함하는 Array
startIndexint변환을 시작할 지정된 배열의 인덱스

ReturnValue

String containing hexadecimal representation of the specified range of elements of the specified array

또 보기

BitConverter::ToString(const ArrayPtr<uint8_t>&, int, int) method

지정된 바이트 배열의 값 범위를 16진수 문자열 표현으로 변환합니다.

static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, int startIndex, int length)
매개변수형식설명
valueconst ArrayPtr<uint8_t>&변환할 바이트를 포함하는 Array
startIndexint변환할 바이트 배열 요소 범위가 시작되는 지정된 배열의 인덱스
길이int변환할 바이트 배열 요소 범위의 길이

ReturnValue

String containing hexadecimal representation of the specified range of elements of the specified array

또 보기