INumberBase<TSelf>.Parse 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
将 UTF-8 字符范围分析为值。 |
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
将字符范围解析为值。 |
Parse(String, NumberStyles, IFormatProvider) |
将字符串分析为值。 |
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- Source:
- INumberBase.cs
- Source:
- INumberBase.cs
将 UTF-8 字符范围分析为值。
public:
static override TSelf Parse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static virtual TSelf Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Overrides Function Parse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider) As TSelf
参数
- utf8Text
- ReadOnlySpan<Byte>
要分析的 UTF-8 字符的跨度。
- style
- NumberStyles
可以存在于 中的 utf8Text
数字样式的按位组合。
- provider
- IFormatProvider
一个对象,提供有关 utf8Text
的区域性特定格式设置信息。
返回
TSelf
分析 utf8Text
的结果。
例外
style
不是受支持的 NumberStyles 值。
utf8Text
的格式不正确。
utf8Text
不能由 TSelf
表示。
适用于
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- Source:
- INumberBase.cs
- Source:
- INumberBase.cs
- Source:
- INumberBase.cs
将字符范围解析为值。
public:
static TSelf Parse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static abstract TSelf Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Function Parse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider) As TSelf
参数
- s
- ReadOnlySpan<Char>
要分析的字符范围。
- style
- NumberStyles
可以存在于 中的 s
数字样式的按位组合。
- provider
- IFormatProvider
一个对象,提供有关 s
的区域性特定格式设置信息。
返回
TSelf
分析 s
的结果。
例外
style
不是受支持的 NumberStyles 值。
s
的格式不正确。
s
不能由 TSelf
表示。
适用于
Parse(String, NumberStyles, IFormatProvider)
- Source:
- INumberBase.cs
- Source:
- INumberBase.cs
- Source:
- INumberBase.cs
将字符串分析为值。
public:
static TSelf Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public static abstract TSelf Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> 'Self
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As TSelf
参数
- s
- String
要分析的字符串。
- style
- NumberStyles
可以存在于 中的 s
数字样式的按位组合。
- provider
- IFormatProvider
一个对象,提供有关 s
的区域性特定格式设置信息。
返回
TSelf
分析 s
的结果。
例外
style
不是受支持的 NumberStyles 值。
s
为 null
。
s
的格式不正确。
s
不能由 TSelf
表示。