【发布时间】:2010-03-16 14:49:03
【问题描述】:
在这个特定的代码示例中,我想从C# documentation 标签中引用第二个重载方法(int n):
/// <summary>
/// The method to pass an integer to is <see cref="DoSomething">
/// </summary>
void DoSomething() {
}
void DoSomething(int n) {
}
void DoSomething(string str) {
}
但是怎么做呢?
【问题讨论】: