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

namespace System.Collections {
	public interface IComparer {

		int Compare(object x, object y);

	}
}

#endif