I have a custom collection as shown below
public class CustomCollection<T>:IEnumerable<T>, IEnumerator<T>
{
    int size = 0;
    int current = 0;
    int position = -1;
    CustomComparer<T> cmp = new CustomComparer<T>();
    T[] collection = null;
    public CustomCollection(int sizeofColl)
    {
        size = sizeofColl;
        collection = new T[size];
    }
    public void Push(T value)
    {
        if (!collection.Contains(value, cmp))
            collection[current++] = value;
    }
    public T Pop()
    {
        return collection[--current];
    }        
    IEnumerator<T> IEnumerable<T>.GetEnumerator()
    {
        return (IEnumerator<T>)this;
    }
    System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
    {
        throw new NotImplementedException();
    }
    public T Current
    {
        get { return collection[position]; }
    }
    public void Dispose()
    {
    }
    object System.Collections.IEnumerator.Current
    {
        get { throw new NotImplementedException(); }
    }
    public bool MoveNext()
    {
        position++;
        if (position >= collection.Length)
            return false;
        else
            return true;
    }
    public void Reset()
    {
        throw new NotImplementedException();
    }
}
Now I want to have a collection of Person class which is as below along with the IEqualityComparer
 public class Person
{
    public string Name { get; set; }
    public int ID { get; set; }       
}
public class CustomComparer<T>:IEqualityComparer<T>    {
    public bool Equals(T x, T y)
    {
        Person p1 = x as Person;
        Person p2 = y as Person;
        if (p1 == null || p2 == null)
            return false;
        else
            return p1.Name.Equals(p2.Name);
    }
    public int GetHashCode(T obj)
    {
        Person p = obj as Person;
        return p.Name.GetHashCode();
    }
}
Now when I perform the following operation on the collection, why only Equals Method is called and not the GetHashCode() ?
  CustomCollection.CustomCollection<Person> custColl = new CustomCollection<Person>(3);
        custColl.Push(new Person() { Name = "per1", ID = 1 });
        custColl.Push(new Person() { Name = "per2", ID = 2 });
        custColl.Push(new Person() { Name = "per1", ID = 1 });
Or how can I make my code to call GetHashCode ?
 
    