예제 #1
0
파일: UInt40.cs 프로젝트: nkomarov/VKSharp
        public int CompareTo(UInt40 other)
        {
            var cmp = _1.CompareTo(other._1);

            return(cmp != 0 ? cmp : _2.CompareTo(other._2));
        }
예제 #2
0
파일: UInt40.cs 프로젝트: nkomarov/VKSharp
 public bool Equals(UInt40 other)
 {
     return(_1 == other._1 && _2 == other._2);
 }