“// TODO实现了一个完整的类头”

时间:2011-02-16 16:11:13

标签: c# header

“// TODO实现了一个完整的类头”,为我的C#类工作我的最终项目,这是该项目的TODO之一。我不完全确定这意味着什么。

包含的程序顶部如下所示:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

//TODO implement a complete class header

namespace Payroll
{


 [Serializable]


    public abstract class Employee:IPayable
    {
        #region "Variable Declarations"

        //create an enumeration that keeps track of the type
        public enum Type
        {
            Hourly = 1,
            Salary = 2,
            Contract = 3,
            None = 4
        };

3 个答案:

答案 0 :(得分:6)

指定信息,以便其他开发人员知道该类的功能/包含内容。

您可以找到有关<summary>代码的更多信息here

Recommended Tags for Documentation Comments

您还可以使用一些名为GhostDoc的软件。

  

GhostDoc是Visual Studio扩展   自动生成XML   文档注释方法和   基于类型的属性,   参数,名称和其他上下文   信息。

答案 1 :(得分:2)

他或她可能指的是XML documentation comment他们没有时间写作。

答案 2 :(得分:2)

可能只是提到向班级添加文档标题:http://msdn.microsoft.com/en-us/library/b2s063f7.aspx