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

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

namespace System.Collections {

	public interface IEqualityComparer {

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

	}

}

#endif