我必须实现需要以下属性的COM接口:
public int this[ref object Key]
{
get { throw new NotImplementedException(); }
}
此代码由MSVS 2010 intellisence生成,无法编译:{{1}}
当我使用Resharper生成默认实现时,它会生成以下代码:
ref and out are not valid in this context
但是当我编译编译时认为:int IMyInterface.get_Item(ref object Key)
{
}
我该如何解决?