从另一个索引器继承文档的语法是什么?

Mat*_*dge 3 c# sandcastle xml-documentation

在我的实现中,我有这个:

/// <inheritdoc cref="IInterface{T} this[,]"/>
public T this[long row, long column]
{
    ...
}
Run Code Online (Sandbox Code Playgroud)

XMLdoc 已经存在于IInterface. 我怎样才能从那里拿起它(就像我做其他事情一样)?

我收到编译器警告:

“XXX.YYY.this[long, long]”上的警告 108 XML 注释具有语法错误的 cref 属性“IInterface this[,]”

我试图消除thiscref但这也不能工作。我需要什么语法?

Bal*_*nyi 5

用这个: cref="IInterface{T}.this[long,long]"