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
指定 SAFEARRAYs 的 VT_ARRAY 标志时。