CurrencyWrapper 构造函数

定义

初始化 CurrencyWrapper 类的新实例。

重载

CurrencyWrapper(Decimal)

用要包装并作为 Decimal 类型进行封送的 VT_CY 来初始化 CurrencyWrapper 类的新实例。

CurrencyWrapper(Object)

用包含要包装并作为 Decimal 类型进行封送的 VT_CY 的对象来初始化 CurrencyWrapper 类的新实例。

CurrencyWrapper(Decimal)

Source:
CurrencyWrapper.cs
Source:
CurrencyWrapper.cs
Source:
CurrencyWrapper.cs

用要包装并作为 Decimal 类型进行封送的 VT_CY 来初始化 CurrencyWrapper 类的新实例。

public:
 CurrencyWrapper(System::Decimal obj);
public CurrencyWrapper (decimal obj);
new System.Runtime.InteropServices.CurrencyWrapper : decimal -> System.Runtime.InteropServices.CurrencyWrapper
Public Sub New (obj As Decimal)

参数

obj
Decimal

要包装并作为 Decimal 进行封送的 VT_CY

适用于

CurrencyWrapper(Object)

Source:
CurrencyWrapper.cs
Source:
CurrencyWrapper.cs
Source:
CurrencyWrapper.cs

用包含要包装并作为 Decimal 类型进行封送的 VT_CY 的对象来初始化 CurrencyWrapper 类的新实例。

public:
 CurrencyWrapper(System::Object ^ obj);
public CurrencyWrapper (object obj);
new System.Runtime.InteropServices.CurrencyWrapper : obj -> System.Runtime.InteropServices.CurrencyWrapper
Public Sub New (obj As Object)

参数

obj
Object

包含要包装并作为 Decimal 进行封送的 VT_CY 的对象。

例外

obj 参数不是 Decimal 类型。

适用于