ComVariant.CreateRaw<T>(VarEnum, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的型別和提供的值建立 ComVariant。
public:
generic <typename T>
where T : value class static System::Runtime::InteropServices::Marshalling::ComVariant CreateRaw(System::Runtime::InteropServices::VarEnum vt, T rawValue);
public static System.Runtime.InteropServices.Marshalling.ComVariant CreateRaw<T> (System.Runtime.InteropServices.VarEnum vt, T rawValue) where T : struct;
static member CreateRaw : System.Runtime.InteropServices.VarEnum * 'T -> System.Runtime.InteropServices.Marshalling.ComVariant (requires 'T : struct)
Public Shared Function CreateRaw(Of T As Structure) (vt As VarEnum, rawValue As T) As ComVariant
類型參數
- T
要儲存在變體中的值型別。
參數
- vt
- VarEnum
變體的類型
- rawValue
- T
要儲存在變體中的原始值,而不需進行任何處理
傳回
包含所提供值的變體。
例外狀況
當提供的 vt
對應至 VARIANT 中不支援或 VT_DECIMAL
當提供的 vt
指定 SAFEARRAY 的 VT_ARRAY 旗標時。