在xml doc中,我可以插入对方法组的引用吗?怎么样?

Che*_*eso 8 .net c# documentation documentation-generation

在C#中,我可以使用XML Documentation Comments直接在代码中附加属性,方法,事件等文档.

我知道如何插入对特定方法的引用:

<see cref="MethodName(TypeForArg1, TypeForArg2..)"/>
Run Code Online (Sandbox Code Playgroud)

有没有办法插入方法组的引用?我有多个相同方法名称的重载...

我试过了

<see cref="M:MethodName"/>
Run Code Online (Sandbox Code Playgroud)

..但那没用.

编辑: BUMP

Che*_*eso 3

显然没有办法做到这一点。