Newer
Older
DNA / corlib / System.Collections.Generic / IEqualityComparer.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 235 bytes First commit
#if !LOCALTEST

using System;
using System.Collections.Generic;
using System.Text;

namespace System.Collections.Generic {

	public interface IEqualityComparer<T> {

		bool Equals(T x, T y);
		int GetHashCode(T obj);

	}

}

#endif