Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

"//TODO implement a complete class header" working on my final project for my C# class and that is one of the TODO's for the project. I'm not totally sure what it means.

The top of the program that contains that looks like this:

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
        };
share|improve this question
1  
show us a few more lines of code, about 5 more please, or 1 at the very least. Or is that all you have? – servermanfail Feb 16 '11 at 16:16
1  
Yeah, there's kind of no such thing in C#. Also, the location of the TODO (outside the namespace) is odd. Maybe your instructor means for you to add XML comments to the class (which you can do easily by typing /// above the class definition. – MusiGenesis Feb 16 '11 at 16:16

3 Answers

up vote 6 down vote accepted

Specify information so that another developer knows what the class does/contains.

You can find out more information here about <summary> tags.

Recommended Tags for Documentation Comments

You can also use some software called GhostDoc.

GhostDoc is a Visual Studio extension that automatically generates XML documentation comments for methods and properties based on their type, parameters, name, and other contextual information.

share|improve this answer

He or she was probably referring to an XML documentation comment they didn't have to time to write yet.

share|improve this answer

Probably just referring to adding a documentation header to the class: http://msdn.microsoft.com/en-us/library/b2s063f7.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.