我用以下声明的IDL文件的COM接口:
typedef [uuid(D7B6C495-FFF3-11E0-8A39-08002700D831)]
struct PORT_CONFIG
{
unsigned char rack;
unsigned short port;
unsigned char offset;
} PORT_CONFIG;
[object, uuid(D7B6C492-FFF3-11E0-8A39-08002700D831), dual, nonextensible, pointer_default(unique)]
interface IMED704 : IDispatch
{
[id(5), helpstring("method PortConfig")] HRESULT PortConfig([in] SAFEARRAY(PORT_CONFIG) portCfg, [in, defaultvalue(-1)] VARIANT_BOOL clearInputs);
};
现在,在我的C#程序,我试图调用PortConfig方法:
PORT_CONFIG[] portCfg = new PORT_CONFIG[12];
// ...Initialize code goes here
dig704.PortConfig(portCfg, true);
然而该方案抛出时方法被调用的异常。 我究竟做错了什么?
唯一的例外是:
The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))
更多的信息,如果我尝试以下方法:
IntPtr pointer = Marshal.GetITypeInfoForType(typeof(PORT_CONFIG));
我收到的例外是:
The specified type must be visible from COM.\r\nParameter name: t