5
public interface IFoo
{
void Bar();
}
public class FooClass : IFoo
{
/// <summary> ... </summary>
/// <seealso cref="?"/> //How do you reference the IFoo.Bar() method
public void Bar() { }
/// <summary> ... </summary>
/// <seealso cref="?"/> //How do you reference the standard Bar() method
void IFoo.Bar() { }
}
我的猜測是:
<seealso cref="IFoo.Bar()"/> //Explicitly implemented interface method
<seealso cref="Bar()"/> //Standard method
,但是,我不知道。 ECMA指南無法區分,所以我想我正在尋找保證我的猜測是正確的。
這就是我的想法,但我不是100%確定。謝謝澄清。 – 2011-05-14 12:41:07
不客氣。 – 2011-05-14 12:43:56
那麼有沒有辦法通過xml註釋引用顯式定義的接口方法? – MDR 2013-11-16 23:28:10