UInt16Comparer.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 UInt16Comparer : IComparer<UInt16>
  6. {
  7. public int Compare(ushort x, ushort y)
  8. {
  9. return x.CompareTo(y);
  10. }
  11. }
  12. }