Esempio n. 1
0
 public bool Equals(String8 other) => this._1 == other._1 && this._2 == 0UL && this._3 == 0UL && this._4 == 0UL;
Esempio n. 2
0
        public int CompareTo(String8 other)
        {
            var cmp = _1.CompareTo(other._1);

            return(cmp != 0 ? cmp : _2.CompareTo(0UL));
        }
Esempio n. 3
0
        public static int Compare(String16 a, String8 b)
        {
            var cmp = a._1.CompareTo(b._1);

            return(cmp != 0 ? cmp : a._2.CompareTo(0UL));
        }
Esempio n. 4
0
 public bool Equals(String8 other) => _1 == other._1 && _2 == 0UL;