有
///<summary>
///This is summary for some class or method
///</summary>
类或方法的文档。但是如何为简单的变量或列表编写这个?
我使用 Visual Studio 2010,当我将鼠标悬停在某个列表、属性或我希望看到的某种摘要(在那个小工具提示中)时,我已经写了那个特定的东西。
///<doc>
///always use this list!
List<String> beer = new List<String>();
编辑:好的,我们发现,只要你在课堂上发表评论,但在方法或函数之外,它就可以正常工作!
有什么方法可以在方法中记录/评论吗?
public class BeerForall
{
/// <summary>
/// it works here
/// </summary>
public List<String> beer = new List<string>();
public String giveBeer()
{
/// is not working, u can not comment
/// <summary>
/// test test, not working
/// </summary>
List<String> moreBeer = new List<string>();
return "beer";
}
}