In C #, I can attach documentation to properties, methods, events, etc. directly in code using XML Documentation Comments .
I know how to insert a link to a specific method:
<see cref="MethodName(TypeForArg1, TypeForArg2..)"/>
Is there a way to insert a link to a group of methods? Where I have several overloads of one method name ...
I tried
<see cref="M:MethodName"/>
.. but that didn't work.
EDIT: BUMP
Cheeso
source share