你将如何在 IDL 中实现这个属性:
public int[] Params
{
get
{
return _Params;
}
set
{
_Params = value;
}
}
我尝试了下面的idl代码
[propget, helpstring("The click through parameters")]
HRESULT Params([out, retval] int *rVal);
[propput, helpstring("The click through parameters")]
HRESULT Params([in] int *RnewVal);
但是我的编译器正在寻找这个
public int get_Params()
{
throw new NotImplementedException();
}
public void set_Params(ref int rVal)
{
throw new NotImplementedException();
}
我 99.999% 确定这是类型的问题。