共用方式為


Decimal.TryParse 方法

定義

將數位的字串表示轉換為其相等的 Decimal。 傳回值表示轉換成功或失敗。

多載

TryParse(ReadOnlySpan<Byte>, Decimal)

嘗試將包含數位字串表示的UTF-8字元範圍轉換成其帶正負號的十進位對等專案。

TryParse(ReadOnlySpan<Char>, Decimal)

使用特定文化特性格式,將數位的範圍表示轉換為其相等 Decimal。 傳回值表示轉換成功或失敗。

TryParse(String, Decimal)

將數位的字串表示轉換為其相等的 Decimal。 傳回值表示轉換成功或失敗。

TryParse(ReadOnlySpan<Byte>, IFormatProvider, Decimal)

嘗試將UTF-8字元的範圍剖析為值。

TryParse(ReadOnlySpan<Char>, IFormatProvider, Decimal)

嘗試將字元範圍剖析成值。

TryParse(String, IFormatProvider, Decimal)

嘗試將字串剖析成值。

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Decimal)

嘗試將UTF-8字元的範圍剖析為值。

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Decimal)

使用指定的樣式和文化特性特定格式,將數位的span表示轉換為其相等的 Decimal。 傳回值表示轉換成功或失敗。

TryParse(String, NumberStyles, IFormatProvider, Decimal)

使用指定的樣式和文化特性特定格式,將數位的字串表示轉換成其相等的 Decimal。 傳回值表示轉換成功或失敗。

TryParse(ReadOnlySpan<Byte>, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs

嘗試將包含數位字串表示的UTF-8字元範圍轉換成其帶正負號的十進位對等專案。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] System::Decimal % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out decimal result);
static member TryParse : ReadOnlySpan<byte> * decimal -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As Decimal) As Boolean

參數

utf8Text
ReadOnlySpan<Byte>

範圍,包含代表要轉換之數位的UTF-8字元。

result
Decimal

當這個方法傳回時,會包含與轉換成功時 utf8Text 中包含的數位相等的帶正負號的十進位值,如果轉換失敗則為零。 這個參數會未初始化傳遞;將覆寫原本在結果中提供的任何值。

傳回

如果成功轉換 utf8Texttrue;否則,false

適用於

TryParse(ReadOnlySpan<Char>, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

使用特定文化特性格式,將數位的範圍表示轉換為其相等 Decimal。 傳回值表示轉換成功或失敗。

public:
 static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] System::Decimal % result);
public static bool TryParse (ReadOnlySpan<char> s, out decimal result);
static member TryParse : ReadOnlySpan<char> * decimal -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As Decimal) As Boolean

參數

s
ReadOnlySpan<Char>

範圍,包含表示要轉換之數位的字元。

result
Decimal

當這個方法傳回時,如果轉換成功,則包含相當於 s中所含數值的 Decimal 數位,如果轉換失敗,則為零。 如果 s 參數是 nullEmpty,或代表小於 Decimal.MinValue 或大於 Decimal.MaxValue的數位,則轉換會失敗。 此參數已傳遞 uininitialized;會覆寫原本在 result 中提供的任何值。

傳回

如果成功轉換 strue;否則,false

適用於

TryParse(String, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

將數位的字串表示轉換為其相等的 Decimal。 傳回值表示轉換成功或失敗。

public:
 static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] System::Decimal % result);
public static bool TryParse (string s, out decimal result);
public static bool TryParse (string? s, out decimal result);
static member TryParse : string * decimal -> bool
Public Shared Function TryParse (s As String, ByRef result As Decimal) As Boolean

參數

s
String

要轉換之數位的字串表示。

result
Decimal

當這個方法傳回時,如果轉換成功,則包含相當於 s中所含數值的 Decimal 數位,如果轉換失敗,則為零。 如果 s 參數是 nullEmpty,不是有效格式的數位,或代表小於 Decimal.MinValue 或大於 Decimal.MaxValue的數位,則轉換會失敗。 此參數已傳遞 uininitialized;會覆寫原本在 result 中提供的任何值。

傳回

如果成功轉換 strue;否則,false

範例

下列範例會使用 Decimal.TryParse(String, Decimal) 方法,將數值的字串表示轉換成 Decimal 值。 它假設 en-US 是目前的文化特性。

string value;
decimal number;

// Parse a floating-point value with a thousands separator.
value = "1,643.57";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);

// Parse a floating-point value with a currency symbol and a
// thousands separator.
value = "$1,643.57";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);

// Parse value in exponential notation.
value = "-1.643e6";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);

// Parse a negative integer value.
value = "-1689346178821";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);
// The example displays the following output to the console:
//       1643.57
//       Unable to parse '$1,643.57'.
//       Unable to parse '-1.643e6'.
//       -1689346178821
// Parse a floating-point value with a thousands separator.
let value = "1,643.57"
match Decimal.TryParse value with
| true, number ->
    printfn $"{number}"
| _ ->
    printfn $"Unable to parse '{value}'."

// Parse a floating-point value with a currency symbol and a
// thousands separator.
let value = "$1,643.57"
match Decimal.TryParse value with
| true, number ->
    printfn $"{number}"
| _ -> 
    printfn $"Unable to parse '{value}'."

// Parse value in exponential notation.
let value = "-1.643e6"
match Decimal.TryParse value with
| true, number ->
    printfn $"{number}"
| _ -> 
    printfn $"Unable to parse '{value}'."

// Parse a negative integer value.
let value = "-1689346178821"
match Decimal.TryParse value with
| true, number ->
    printfn $"{number}"
| _ -> 
    printfn $"Unable to parse '{value}'."
// The example displays the following output to the console:
//       1643.57
//       Unable to parse '$1,643.57'.
//       Unable to parse '-1.643e6'.
//       -1689346178821
Dim value As String
Dim number As Decimal

' Parse a floating-point value with a thousands separator.
value = "1,643.57"
If Decimal.TryParse(value, number) Then
   Console.WriteLine(number)
Else
   Console.WriteLine("Unable to parse '{0}'.", value)      
End If   

' Parse a floating-point value with a currency symbol and a 
' thousands separator.
value = "$1,643.57"
If Decimal.TryParse(value, number) Then
   Console.WriteLine(number)  
Else
   Console.WriteLine("Unable to parse '{0}'.", value)   
End If

' Parse value in exponential notation.
value = "-1.643e6"
If Decimal.TryParse(value, number)
   Console.WriteLine(number)
Else
   Console.WriteLine("Unable to parse '{0}'.", value)   
End If

' Parse a negative integer value.
value = "-1689346178821"
If Decimal.TryParse(value, number)
   Console.WriteLine(number)
Else
   Console.WriteLine("Unable to parse '{0}'.", value)   
End If
' The example displays the following output to the console:
'       1643.57
'       Unable to parse '$1,643.57'.
'       Unable to parse '-1.643e6'.
'       -1689346178821

備註

這個多載與 Decimal.Parse(String) 方法不同,方法是傳回布爾值,指出剖析作業是否成功,而不是傳回剖析的數值。 它不需要使用例外狀況處理來測試 FormatExceptions 無效且無法成功剖析。

參數 s 包含一些表單:

[ws][sign][digits,]digits[.fractional-digits][ws]

方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。

元素 描述
ws 選擇性的空格符。
簽署 選擇性符號。
位數 範圍從 0 到 9 的數位序列。
特定文化特性的千位分隔符符號。
特定文化特性的小數點符號。
小數位數 範圍從 0 到 9 的數位序列。

參數 s 會使用 NumberStyles.Number 樣式來解譯。 這表示允許空格符和千位分隔符,但貨幣符號則不允許。 若要明確定義可以存在於 s中的元素(例如貨幣符號、千位分隔符和空格符),請使用 Decimal.TryParse(String, NumberStyles, IFormatProvider, Decimal) 方法多載。

參數 s 會使用針對目前系統文化特性初始化 NumberFormatInfo 物件中的格式資訊來剖析。 如需詳細資訊,請參閱 CurrentInfo。 若要使用其他指定文化特性的格式資訊剖析字串,請使用 Decimal.TryParse(String, NumberStyles, IFormatProvider, Decimal) 方法多載。

如有必要,s 的值會使用四捨五入到最接近的四捨五入。

Decimal 物件具有29位數的有效位數。 如果 s 代表數字超過 29 位數,但具有小數部分,且在 MaxValueMinValue的範圍內,則數位會四捨五入,而不是截斷為 29 位數,使用四捨五入到最接近。

如果在剖析作業期間,s 參數中遇到分隔符,且適用的貨幣或數位十進位和群組分隔符相同,剖析作業會假設分隔符是小數分隔符,而不是群組分隔符。 如需分隔符的詳細資訊,請參閱 CurrencyDecimalSeparatorNumberDecimalSeparatorCurrencyGroupSeparatorNumberGroupSeparator

另請參閱

適用於

TryParse(ReadOnlySpan<Byte>, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs

嘗試將UTF-8字元的範圍剖析為值。

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

參數

utf8Text
ReadOnlySpan<Byte>

要剖析的UTF-8字元範圍。

provider
IFormatProvider

物件,提供與 utf8Text相關的特定文化特性格式資訊。

result
Decimal

傳回時,包含成功剖析 utf8Text 或失敗時未定義值的結果。

傳回

如果已成功剖析 utf8Texttrue;否則,false

適用於

TryParse(ReadOnlySpan<Char>, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

嘗試將字元範圍剖析成值。

public:
 static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result) = ISpanParsable<System::Decimal>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out decimal result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * decimal -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As Decimal) As Boolean

參數

s
ReadOnlySpan<Char>

要剖析的字元範圍。

provider
IFormatProvider

物件,提供與 s相關的特定文化特性格式資訊。

result
Decimal

當這個方法傳回時,包含成功剖析 s的結果,或失敗時未定義的值。

傳回

如果已成功剖析 strue;否則,false

適用於

TryParse(String, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

嘗試將字串剖析成值。

public:
 static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result) = IParsable<System::Decimal>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out decimal result);
static member TryParse : string * IFormatProvider * decimal -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As Decimal) As Boolean

參數

s
String

要剖析的字串。

provider
IFormatProvider

物件,提供與 s相關的特定文化特性格式資訊。

result
Decimal

當這個方法傳回時,包含成功剖析 s 或失敗時未定義值的結果。

傳回

如果已成功剖析 strue;否則,false

適用於

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs

嘗試將UTF-8字元的範圍剖析為值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result) = System::Numerics::INumberBase<System::Decimal>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out decimal result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * decimal -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As Decimal) As Boolean

參數

utf8Text
ReadOnlySpan<Byte>

要剖析的UTF-8字元範圍。

style
NumberStyles

數字樣式的位元組合,可以存在於 utf8Text中。

provider
IFormatProvider

物件,提供與 utf8Text相關的特定文化特性格式資訊。

result
Decimal

傳回時,包含成功剖析 utf8Text 或失敗時未定義值的結果。

傳回

如果已成功剖析 utf8Texttrue;否則,false

適用於

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

使用指定的樣式和文化特性特定格式,將數位的span表示轉換為其相等的 Decimal。 傳回值表示轉換成功或失敗。

public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result);
public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result) = System::Numerics::INumberBase<System::Decimal>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out decimal result);
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out decimal result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * decimal -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Decimal) As Boolean

參數

s
ReadOnlySpan<Char>

範圍,包含表示要轉換之數位的字元。

style
NumberStyles

列舉值的位元組合,表示允許的 s格式。 要指定的一般值是 Number

provider
IFormatProvider

物件,提供與 s相關的特定文化特性剖析資訊。

result
Decimal

當這個方法傳回時,如果轉換成功,則包含相當於 s中所含數值的 Decimal 數位,如果轉換失敗,則為零。 如果 s 參數 nullEmpty,不是與 style相容的格式的數位,或代表小於 Decimal.MinValue 或大於 Decimal.MaxValue的數位,則轉換會失敗。 此參數已傳遞 uininitialized;會覆寫原本在 result 中提供的任何值。

傳回

如果成功轉換 strue;否則,false

適用於

TryParse(String, NumberStyles, IFormatProvider, Decimal)

來源:
Decimal.cs
來源:
Decimal.cs
來源:
Decimal.cs

使用指定的樣式和文化特性特定格式,將數位的字串表示轉換成其相等的 Decimal。 傳回值表示轉換成功或失敗。

public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result);
public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::Decimal % result) = System::Numerics::INumberBase<System::Decimal>::TryParse;
public static bool TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out decimal result);
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out decimal result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * decimal -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Decimal) As Boolean

參數

s
String

要轉換之數位的字串表示。

style
NumberStyles

列舉值的位元組合,表示允許的 s格式。 要指定的一般值是 Number

provider
IFormatProvider

物件,提供與 s相關的特定文化特性剖析資訊。

result
Decimal

當這個方法傳回時,如果轉換成功,則包含相當於 s中所含數值的 Decimal 數位,如果轉換失敗,則為零。 如果 s 參數 nullEmpty,不是與 style相容的格式的數位,或代表小於 Decimal.MinValue 或大於 Decimal.MaxValue的數位,則轉換會失敗。 此參數已傳遞 uininitialized;會覆寫原本在 result 中提供的任何值。

傳回

如果成功轉換 strue;否則,false

例外狀況

style 不是 NumberStyles 值。

-或-

styleAllowHexSpecifier 值。

範例

下列範例示範如何使用 TryParse(String, NumberStyles, IFormatProvider, Decimal) 方法來剖析具有特定樣式的數位字串表示,並使用特定文化特性的慣例來格式化。

string value;
NumberStyles style;
CultureInfo culture;
decimal number;

// Parse currency value using en-GB culture.
value = "£1,097.63";
style = NumberStyles.Number | NumberStyles.AllowCurrencySymbol;
culture = CultureInfo.CreateSpecificCulture("en-GB");
if (Decimal.TryParse(value, style, culture, out number))
   Console.WriteLine("Converted '{0}' to {1}.", value, number);
else
   Console.WriteLine("Unable to convert '{0}'.", value);
// Displays:
//       Converted '£1,097.63' to 1097.63.

value = "1345,978";
style = NumberStyles.AllowDecimalPoint;
culture = CultureInfo.CreateSpecificCulture("fr-FR");
if (Decimal.TryParse(value, style, culture, out number))
   Console.WriteLine("Converted '{0}' to {1}.", value, number);
else
   Console.WriteLine("Unable to convert '{0}'.", value);
// Displays:
//       Converted '1345,978' to 1345.978.

value = "1.345,978";
style = NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands;
culture = CultureInfo.CreateSpecificCulture("es-ES");
if (Decimal.TryParse(value, style, culture, out number))
   Console.WriteLine("Converted '{0}' to {1}.", value, number);
else
   Console.WriteLine("Unable to convert '{0}'.", value);
// Displays:
//       Converted '1.345,978' to 1345.978.

value = "1 345,978";
if (Decimal.TryParse(value, style, culture, out number))
   Console.WriteLine("Converted '{0}' to {1}.", value, number);
else
   Console.WriteLine("Unable to convert '{0}'.", value);
// Displays:
//       Unable to convert '1 345,978'.
// Parse currency value using en-GB culture.
let value = "£1,097.63"
let style = NumberStyles.Number ||| NumberStyles.AllowCurrencySymbol
let culture = CultureInfo.CreateSpecificCulture "en-GB"
match Decimal.TryParse(value, style, culture) with
| true, number ->
    printfn $"Converted '{value}' to {number}."
| _ -> 
    printfn $"Unable to convert '{value}'."
// Displays:
//       Converted '£1,097.63' to 1097.63.

let value = "1345,978"
let style = NumberStyles.AllowDecimalPoint
let culture = CultureInfo.CreateSpecificCulture "fr-FR"
match Decimal.TryParse(value, style, culture) with
| true, number ->
    printfn $"Converted '{value}' to {number}."
| _ -> 
    printfn $"Unable to convert '{value}'."
// Displays:
//       Converted '1345,978' to 1345.978.

let value = "1.345,978"
let style = NumberStyles.AllowDecimalPoint ||| NumberStyles.AllowThousands
let culture = CultureInfo.CreateSpecificCulture "es-ES"
match Decimal.TryParse(value, style, culture) with
| true, number ->
    printfn $"Converted '{value}' to {number}."
| _ -> 
    printfn $"Unable to convert '{value}'."
// Displays:
//       Converted '1.345,978' to 1345.978.

let value = "1 345,978"
match Decimal.TryParse(value, style, culture) with
| true, number ->
    printfn $"Converted '{value}' to {number}."
| _ -> 
    printfn $"Unable to convert '{value}'."
// Displays:
//       Unable to convert '1 345,978'.
Dim value As String
Dim style As NumberStyles
Dim culture As CultureInfo
Dim number As Decimal

' Parse currency value using en-GB culture.
value = "£1,097.63"
style = NumberStyles.Number Or NumberStyles.AllowCurrencySymbol
culture = CultureInfo.CreateSpecificCulture("en-GB")
If Decimal.TryParse(value, style, culture, number) Then
   Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
   Console.WriteLine("Unable to convert '{0}'.", value)
End If    
' Displays: 
'       Converted '£1,097.63' to 1097.63.

value = "1345,978"
style = NumberStyles.AllowDecimalPoint
culture = CultureInfo.CreateSpecificCulture("fr-FR")
If Decimal.TryParse(value, style, culture, number) Then
   Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
   Console.WriteLine("Unable to convert '{0}'.", value)
End If    
' Displays:
'       Converted '1345,978' to 1345.978.

value = "1.345,978"
style = NumberStyles.AllowDecimalPoint Or NumberStyles.AllowThousands
culture = CultureInfo.CreateSpecificCulture("es-ES")
If Decimal.TryParse(value, style, culture, number) Then
   Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
   Console.WriteLine("Unable to convert '{0}'.", value)
End If    
' Displays: 
'       Converted '1.345,978' to 1345.978.

value = "1 345,978"
If Decimal.TryParse(value, style, culture, number) Then
   Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
   Console.WriteLine("Unable to convert '{0}'.", value)
End If    
' Displays:
'       Unable to convert '1 345,978'.

備註

這個多載與 Decimal.Parse(String, NumberStyles, IFormatProvider) 方法不同,方法是傳回布爾值,指出剖析作業是否成功,而不是傳回剖析的數值。 它不需要使用例外狀況處理來測試 FormatExceptions 無效且無法成功剖析。

style 參數會定義 s 參數允許的格式,讓剖析作業成功。 它必須是來自 NumberStyles 列舉的位旗標組合。 不支援下列 NumberStyles 成員:

視樣式的值而定,s 參數可能包含下列元素:

[ws][$][sign][digits,]digits[.fractional-digits][e[sign]digits][ws]

方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。

元素 描述
ws 選擇性的空格符。 如果 style 包含 NumberStyles.AllowLeadingWhite 旗標,則空格符可能會出現在 s 開頭。 如果 style 包含 NumberStyles.AllowTrailingWhite 旗標,則它可能會出現在 s 結尾。
$ 特定文化特性的貨幣符號。 字串中的位置是由 provider 參數之 IFormatProvider.GetFormat 方法所傳回之 NumberFormatInfo 物件的 NumberFormatInfo.CurrencyNegativePatternNumberFormatInfo.CurrencyPositivePattern 屬性所定義。 如果 style 包含 NumberStyles.AllowCurrencySymbol 旗標,貨幣符號可以出現在 s 中。
簽署 選擇性符號。
位數 範圍從 0 到 9 的數位序列。
特定文化特性的小數點符號。
小數位數 範圍從 0 到 9 的數位序列。

style 參數會指定 s 參數的允許格式,而且可以是使用位 OR 運算結合的一或多個 NumberStyles 列舉常數。 如果 style 為 null,則會使用 NumberStyles.Number 樣式來解譯 s

provider 參數是 IFormatProvider 實作,例如 NumberFormatInfoCultureInfo 物件。 provider 參數會提供剖析中使用的文化特性特定資訊。 如果 providernull,則會使用線程目前的文化特性。

Decimal 物件具有29位數的有效位數。 如果 s 代表數字超過 29 位數,但具有小數部分,且在 MaxValueMinValue的範圍內,則數位會四捨五入,而不是截斷為 29 位數,使用四捨五入到最接近。

如果在剖析作業期間 s 參數中遇到分隔符,而且適用的貨幣或數位十進位和群組分隔符相同,剖析作業會假設分隔符是小數分隔符,而不是群組分隔符。 如需分隔符的詳細資訊,請參閱 CurrencyDecimalSeparatorNumberDecimalSeparatorCurrencyGroupSeparatorNumberGroupSeparator

另請參閱

適用於