namespace System.Collections.Generic { partial class Comparer { public static Comparer Default { get { throw new NotImplementedException(); } } } partial class EnumComparer { public override int Compare(T x, T y) { throw new NotImplementedException(); } } }