UInt32Comparer.cs 282 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Best.HTTP.Shared.Databases.Indexing.Comparers
  4. {
  5. public sealed class UInt32Comparer : IComparer<UInt32>
  6. {
  7. public int Compare(UInt32 x, UInt32 y)
  8. {
  9. return x.CompareTo(y);
  10. }
  11. }
  12. }