EqualityComparer.cs 322 B

12345678910111213141516171819
  1. namespace System.Collections.Generic
  2. {
  3. partial class EqualityComparer<T>
  4. {
  5. public static EqualityComparer<T> Default {
  6. get {
  7. throw new NotImplementedException ();
  8. }
  9. }
  10. }
  11. partial class EnumEqualityComparer<T>
  12. {
  13. public override bool Equals(T x, T y)
  14. {
  15. throw new NotImplementedException ();
  16. }
  17. }
  18. }