我如何在C#中实现这个[ref object] .get

时间:2012-06-13 08:12:31

标签: c# com-interop

我必须实现需要以下属性的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) { }

我该如何解决?

0 个答案:

没有答案