Convert.TryToHexStringLower Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts a span of 8-bit unsigned integers to its equivalent span representation that is encoded with lowercase hex characters.
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
Parameters
- source
- ReadOnlySpan<Byte>
A span of 8-bit unsigned integers.
- charsWritten
- Int32
When this method returns, contains the number of chars that were written in destination
.
Returns
true
if the conversion was successful; otherwise, false
.
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.