Ejemplo n.º 1
0
 public int CompareTo(Range other)
 {
     return(Offset.CompareTo(other.Offset));
 }
Ejemplo n.º 2
0
 public int CompareTo(MFIEntry other)
 {
     return(Offset.CompareTo(other.Offset));
 }
Ejemplo n.º 3
0
 public int CompareTo(Block other) => Offset.CompareTo(other?.Offset ?? -1);
Ejemplo n.º 4
0
 public int CompareTo([AllowNull] MemoryBlock other)
 {
     return(Offset.CompareTo(other.Offset));
 }
Ejemplo n.º 5
0
 public int CompareTo([AllowNull] CacheEntry other)
 {
     return(Offset.CompareTo(other.Offset));
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Compares by offset, and then by timing
 /// </summary>
 public int CompareTo(TimingPoint other)
 {
     return(Offset == other.Offset ?
            other.IsTiming.CompareTo(IsTiming) :
            Offset.CompareTo(other.Offset));
 }
Ejemplo n.º 7
0
        public int CompareTo(object obj)
        {
            StartupItem other = obj as StartupItem;

            return(Offset.CompareTo(other.Offset));
        }