Int128.Parse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Parse(String, NumberStyles, IFormatProvider) |
將字串剖析成值。 |
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
將字元範圍剖析為值。 |
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
將UTF-8字元的範圍剖析為值。 |
Parse(String, IFormatProvider) |
將字串剖析成值。 |
Parse(ReadOnlySpan<Char>, IFormatProvider) |
將字元範圍剖析為值。 |
Parse(ReadOnlySpan<Byte>, IFormatProvider) |
將UTF-8字元的範圍剖析為值。 |
Parse(String) |
將字串剖析成值。 |
Parse(String, NumberStyles) |
將字串剖析成值。 |
Parse(String, NumberStyles, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將字串剖析成值。
public:
static Int128 Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<Int128>::Parse;
public static Int128 Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As Int128
參數
- s
- String
要剖析的字串。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 s
中。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
傳回
剖析 s
的結果。
實作
適用於
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將字元範圍剖析為值。
public static Int128 Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As Int128
參數
- s
- ReadOnlySpan<Char>
要剖析的字元範圍。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 s
中。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
傳回
剖析 s
的結果。
實作
適用於
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將UTF-8字元的範圍剖析為值。
public static Int128 Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> Int128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As Int128
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 utf8Text
中。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
傳回
剖析 utf8Text
的結果。
實作
適用於
Parse(String, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將字串剖析成值。
public:
static Int128 Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<Int128>::Parse;
public static Int128 Parse (string s, IFormatProvider? provider);
static member Parse : string * IFormatProvider -> Int128
Public Shared Function Parse (s As String, provider As IFormatProvider) As Int128
參數
- s
- String
要剖析的字串。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
傳回
剖析 s
的結果。
實作
適用於
Parse(ReadOnlySpan<Char>, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將字元範圍剖析為值。
public:
static Int128 Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<Int128>::Parse;
public static Int128 Parse (ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> Int128
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As Int128
參數
- s
- ReadOnlySpan<Char>
要剖析的字元範圍。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
傳回
剖析 s
的結果。
實作
適用於
Parse(ReadOnlySpan<Byte>, IFormatProvider)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將UTF-8字元的範圍剖析為值。
public:
static Int128 Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<Int128>::Parse;
public static Int128 Parse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> Int128
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As Int128
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
傳回
剖析 utf8Text
的結果。
實作
適用於
Parse(String)
Parse(String, NumberStyles)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
將字串剖析成值。
public:
static Int128 Parse(System::String ^ s, System::Globalization::NumberStyles style);
public static Int128 Parse (string s, System.Globalization.NumberStyles style);
static member Parse : string * System.Globalization.NumberStyles -> Int128
Public Shared Function Parse (s As String, style As NumberStyles) As Int128
參數
- s
- String
字串,包含要剖析的數位。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 s
中。
傳回
剖析 s
的結果。