namespace System.Collections.Generic { partial class EqualityComparer { public static EqualityComparer Default { get { throw new NotImplementedException (); } } } partial class EnumEqualityComparer { public override bool Equals(T x, T y) { throw new NotImplementedException (); } } }