Can I reference an overloaded method using the C# documentation tags?
- by jdk
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?