Convert.TryToHexStringLower 메서드

정의

오버로드

Name Description
TryToHexStringLower(ReadOnlySpan<Byte>, Span<Byte>, Int32)

부호 없는 8비트 정수 범위를 소문자 16진수 문자로 인코딩된 해당 UTF-8 범위 표현으로 변환합니다.

TryToHexStringLower(ReadOnlySpan<Byte>, Span<Char>, Int32)

부호 없는 8비트 정수 범위를 소문자 16진수 문자로 인코딩된 해당 범위 표현으로 변환합니다.

TryToHexStringLower(ReadOnlySpan<Byte>, Span<Byte>, Int32)

Source:
Convert.cs
Source:
Convert.cs

부호 없는 8비트 정수 범위를 소문자 16진수 문자로 인코딩된 해당 UTF-8 범위 표현으로 변환합니다.

public:
 static bool TryToHexStringLower(ReadOnlySpan<System::Byte> source, Span<System::Byte> utf8Destination, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryToHexStringLower(ReadOnlySpan<byte> source, Span<byte> utf8Destination, out int bytesWritten);
static member TryToHexStringLower : ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Shared Function TryToHexStringLower (source As ReadOnlySpan(Of Byte), utf8Destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

매개 변수

source
ReadOnlySpan<Byte>

부호 없는 8비트 정수 범위입니다.

utf8Destination
Span<Byte>

에 있는 source요소의 16진수로 UTF-8 범위 표현입니다.

bytesWritten
Int32

이 메서드가 반환되면 에 기록 utf8Destination된 바이트 수가 포함됩니다.

반품

변환에 성공하면

적용 대상

TryToHexStringLower(ReadOnlySpan<Byte>, Span<Char>, Int32)

Source:
Convert.cs
Source:
Convert.cs
Source:
Convert.cs

부호 없는 8비트 정수 범위를 소문자 16진수 문자로 인코딩된 해당 범위 표현으로 변환합니다.

public:
 static bool TryToHexStringLower(ReadOnlySpan<System::Byte> source, Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public static bool TryToHexStringLower(ReadOnlySpan<byte> source, Span<char> destination, out int charsWritten);
static member TryToHexStringLower : ReadOnlySpan<byte> * Span<char> * int -> bool
Public Shared Function TryToHexStringLower (source As ReadOnlySpan(Of Byte), destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean

매개 변수

source
ReadOnlySpan<Byte>

부호 없는 8비트 정수 범위입니다.

destination
Span<Char>

에 있는 요소의 16진수 범위 표현입니다 source.

charsWritten
Int32

이 메서드가 반환되면 에 기록 destination된 문자 수가 포함됩니다.

반품

변환에 성공하면

적용 대상