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

时间:2012-03-20 17:31:45

标签: c# sandcastle xml-documentation

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

/// <inheritdoc cref="IInterface{T} this[,]"/>
public T this[long row, long column]
{
    ...
}

XML IInterface中已存在XMLdoc。我怎样才能从那里拿起它(就像我做的其他事情一样)?

我收到编译器警告:

  

警告108对'XXX.YYY.this [long,long]'的XML评论在语法上不正确的cref属性'IInterface this [,]'

我尝试从this删除cref,但这也无效。我需要什么语法?

1 个答案:

答案 0 :(得分:2)

使用此: cref="IInterface{T}.this[long,long]"