Int128.TryParse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryParse(ReadOnlySpan<Byte>, IFormatProvider, Int128) |
嘗試將UTF-8字元的範圍剖析為值。 |
TryParse(String, Int128) |
嘗試將字串剖析成值。 |
TryParse(ReadOnlySpan<Char>, Int128) |
嘗試將字元範圍剖析成值。 |
TryParse(ReadOnlySpan<Byte>, Int128) |
嘗試將包含數位字串表示的UTF-8字元範圍轉換為其相等的128位帶正負號整數。 |
TryParse(String, NumberStyles, IFormatProvider, Int128) |
嘗試將字串剖析成值。 |
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Int128) |
嘗試將UTF-8字元的範圍剖析為值。 |
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int128) |
嘗試將字元範圍剖析成值。 |
TryParse(String, IFormatProvider, Int128) |
嘗試將字串剖析成值。 |
TryParse(ReadOnlySpan<Char>, IFormatProvider, Int128) |
嘗試將字串剖析成值。 |
TryParse(ReadOnlySpan<Byte>, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將UTF-8字元的範圍剖析為值。
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = IUtf8SpanParsable<Int128>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out Int128 result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
- result
- Int128
傳回時,包含成功剖析 utf8Text
或失敗時未定義值的結果。
傳回
如果已成功剖析 utf8Text
,true
;否則,false
。
適用於
TryParse(String, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字串剖析成值。
public:
static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] Int128 % result);
public static bool TryParse (string? s, out Int128 result);
static member TryParse : string * Int128 -> bool
Public Shared Function TryParse (s As String, ByRef result As Int128) As Boolean
參數
- s
- String
要剖析的字串。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。
適用於
TryParse(ReadOnlySpan<Char>, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字元範圍剖析成值。
public:
static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] Int128 % result);
public static bool TryParse (ReadOnlySpan<char> s, out Int128 result);
static member TryParse : ReadOnlySpan<char> * Int128 -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As Int128) As Boolean
參數
- s
- ReadOnlySpan<Char>
要剖析的字元範圍。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。
適用於
TryParse(ReadOnlySpan<Byte>, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將包含數位字串表示的UTF-8字元範圍轉換為其相等的128位帶正負號整數。
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] Int128 % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out Int128 result);
static member TryParse : ReadOnlySpan<byte> * Int128 -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As Int128) As Boolean
參數
- utf8Text
- ReadOnlySpan<Byte>
範圍,包含代表要轉換之數位的UTF-8字元。
- result
- Int128
當這個方法傳回時,如果轉換成功,則包含128位帶正負號的整數值,相當於 utf8Text
中包含的數位,如果轉換失敗則為零。 這個參數會未初始化傳遞;將覆寫原本在結果中提供的任何值。
傳回
如果成功轉換 utf8Text
,true
;否則,false
。
適用於
TryParse(String, NumberStyles, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字串剖析成值。
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = System::Numerics::INumberBase<Int128>::TryParse;
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out Int128 result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- s
- String
要剖析的字串。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 s
中。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。
適用於
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將UTF-8字元的範圍剖析為值。
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = System::Numerics::INumberBase<Int128>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out Int128 result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 utf8Text
中。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
- result
- Int128
傳回時,包含成功剖析 utf8Text
或失敗時未定義值的結果。
傳回
如果已成功剖析 utf8Text
,true
;否則,false
。
適用於
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字元範圍剖析成值。
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = System::Numerics::INumberBase<Int128>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out Int128 result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- s
- ReadOnlySpan<Char>
要剖析的字元範圍。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 s
中。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。
適用於
TryParse(String, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字串剖析成值。
public:
static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = IParsable<Int128>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out Int128 result);
static member TryParse : string * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- s
- String
要剖析的字串。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。
適用於
TryParse(ReadOnlySpan<Char>, IFormatProvider, Int128)
- 來源:
- Int128.cs
- 來源:
- Int128.cs
- 來源:
- Int128.cs
嘗試將字串剖析成值。
public:
static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] Int128 % result) = ISpanParsable<Int128>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out Int128 result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * Int128 -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As Int128) As Boolean
參數
- s
- ReadOnlySpan<Char>
要剖析的字串。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
- result
- Int128
當這個方法傳回時,包含成功剖析 s
或失敗時未定義值的結果。
傳回
如果已成功剖析 s
,true
;否則,false
。