Visual Studio界面评论内在性?

时间:2011-12-15 11:00:10

标签: visual-studio-2010

是否可以在方法签名及其实现之间链接注释/文档。

示例:

public interface IExample
{
     /// <summary>
     /// make ... 
     /// </summary>     
     void Something();
}

public class AClass : IExample
{
    void Something()
    {
    }
}

当我鼠标悬停在AClass Something方法上时,我希望获得接口方法签名的摘要。

1 个答案:

答案 0 :(得分:2)

您可以使用see / seealso标记来引用实现部分的声明。

  

标签允许您指定文本中的链接。使用   表示文本应放在另请参阅部分中。使用   cref用于创建文档页面的内部超链接的属性   代码元素

interface ICommand
{
   void Execute();
}

/// <summary>
/// Represents a Concrete command, 
/// implements <see cref="ICommand" /> interface.
/// </summary>
public sealed class ConcreteCommand
{
   public void Execute()
   {
   }
}