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?
When ReSharper helps me complete
crefattributes, it includes the argument types when there are overloads (i.e.DoSomething(int)). I’m assuming that this is the valid way to do that.