Comparer.cs 297 B

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