SpanHexExtensions.TryParseHexString 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.
Overloads
TryParseHexString(ReadOnlySpan<Char>, Byte[]) | |
TryParseHexString(ReadOnlySpan<Char>, Span<Byte>) |
TryParseHexString(ReadOnlySpan<Char>, Byte[])
public static bool TryParseHexString (this ReadOnlySpan<char> hexChars, out byte[] result);
static member TryParseHexString : ReadOnlySpan<char> * Byte[] -> bool
<Extension()>
Public Function TryParseHexString (hexChars As ReadOnlySpan(Of Char), ByRef result As Byte()) As Boolean
Parameters
- hexChars
- ReadOnlySpan<Char>
- result
- Byte[]
Returns
Applies to
TryParseHexString(ReadOnlySpan<Char>, Span<Byte>)
public static bool TryParseHexString (this ReadOnlySpan<char> hexChars, Span<byte> result);
static member TryParseHexString : ReadOnlySpan<char> * Span<byte> -> bool
<Extension()>
Public Function TryParseHexString (hexChars As ReadOnlySpan(Of Char), result As Span(Of Byte)) As Boolean
Parameters
- hexChars
- ReadOnlySpan<Char>
Returns
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET