在我的实施中,我有这个:
/// <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
,但这也无效。我需要什么语法?
答案 0 :(得分:2)
使用此:
cref="IInterface{T}.this[long,long]"