【发布时间】:2018-07-04 02:58:51
【问题描述】:
你评论被覆盖的方法吗?
这是一个普遍的问题,如果它不是 100% 适合 Stackoverflow,请原谅我。除了类似的 SO 问题之外,我似乎在互联网上找不到任何信息或示例:How to comment/document an override in C#?
例子:
/// <summary>
/// Updates this sample code.
/// </summary>
public virtual void Update()
{
// do something
}
/// <summary>
/// Do you put a comment here?
/// </summary>
public override void Update()
{
base.Update()
// do something else here
}
【问题讨论】:
标签: .net inheritance comments