IUtf8SpanParsable<TSelf>.TryParse 方法

定义

尝试将 UTF-8 字符范围解析为值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] TSelf % result);
public static abstract bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out TSelf result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * 'Self -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As TSelf) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

要分析的 UTF-8 字符的跨度。

provider
IFormatProvider

一个对象,提供有关 utf8Text 的区域性特定格式设置信息。

result
TSelf

返回时,包含成功分析 utf8Text 的结果或失败时的未定义值。

返回

true 如果 utf8Text 已成功分析,则为 ;否则为 false

适用于