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

namespace System.Collections.Generic {

	public interface IComparer<T> {

		int Compare(T x, T y);

	}

}

#endif