SerializationInfo.GetDecimal(String) メソッド

定義

SerializationInfo ストアから 10 進値を取得します。

public:
 System::Decimal GetDecimal(System::String ^ name);
public decimal GetDecimal (string name);
member this.GetDecimal : string -> decimal
Public Function GetDecimal (name As String) As Decimal

パラメーター

name
String

取得する値に関連付けられた名前。

戻り値

SerializationInfo からの 10 進値。

例外

namenullです。

name に関連付けられた値を 10 進値に変換できません。

指定した名前の要素が、現在のインスタンス内に見つかりません。

注釈

値が 10 進数の場合、または 10 進数に変換できる場合は、その値が返されます。それ以外の場合は、 InvalidCastException がスローされます。 すべての変換は、この SerializationInfoIFormatterConverter関連付けられている によって行われます。

適用対象