Can I reference an overloaded method using the C# documentation tags?
Posted
by jdk
on Stack Overflow
See other posts from Stack Overflow
or by jdk
Published on 2010-03-16T14:49:03Z
Indexed on
2010/03/16
14:51 UTC
Read the original article
Hit count: 138
In this particular code sample I want to reference the second overloaded method (int n) from C# documentation tags:
/// <summary>
/// The method to pass an integer to is <see cref="DoSomething">
/// </summary>
void DoSomething() {
}
void DoSomething(int n) {
}
void DoSomething(string str) {
}
But how?
© Stack Overflow or respective owner