Language Basics C# Tutorial

using System;
namespace Payroll
{
    
    ///  
    /// Document for Employee class
    /// See a cross reference string
    /// 

    public class Employee
    {
        /// 
        /// Comment for the constructor
        /// name2 is a string.
        /// 

        /// Employee id number
        /// Employee Name
        public Employee(int id, string name)
        {
            this.id = id;
            this.name = name;
        }
        
        /// 
        /// Comments for another constructor
        /// 

        /// 
        /// Employee(int, string)
        /// 

        public Employee()
        {
            id = -1;
            name = null;
        }
        int id;
        string name;
    }
}