show/hide this revision's text 2 added 3 characters in body

If you mean the array indexer,, You overload that just by writing an indexer property.. And you can overload, (write as many as you want) indexer properties as long as each one has a different parameter signature

public class EmpployeeCollection: List<Employee>
{
    public Employee this(int this[int employeeId)
    ]
    {   
        get 
        { 
            foreach(Employee emp in this)
                if (emp.EmployeeId == employeeId) return emp;
            return null;
        }
    }
    public Employee this(string this[string employeeName)
    ]        {   
        get 
        { 
            foreach(Employee emp in this)
                if (emp.name == employeeName) return emp;
            return null;
        }
    }

}
show/hide this revision's text 1

If you mean the array indexer,, You overload that just by writing an indexer property.. And you can overload, (write as many as you want) indexer properties as long as each one has a different parameter signature

public class EmpployeeCollection: List<Employee>
{
    public Employee this(int employeeId)
    {   
        get 
        { 
            foreach(Employee emp in this)
                if (emp.EmployeeId == employeeId) return emp;
            return null;
        }
    }
    public Employee this(string employeeName)
    {   
        get 
        { 
            foreach(Employee emp in this)
                if (emp.name == employeeName) return emp;
            return null;
        }
    }

}