SerializationInfo.GetDecimal(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 SerializationInfo 存放區擷取十進位值。
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 的十進位值。
例外狀況
name
為 null
。
與 name
相關聯的值無法轉換為十進位。
在目前的執行個體中找不到具有指定名稱的項目。
備註
如果值為十進位,或可以轉換成十進位,則會傳回該值;否則, InvalidCastException 會擲回 。 所有轉換都是由 IFormatterConverter 與這個 SerializationInfo相關聯的 來完成。