"//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
};
///above the class definition. – MusiGenesis Feb 16 '11 at 16:16