예제 #1
0
 public int CompareTo(Range other)
 {
     return(Offset.CompareTo(other.Offset));
 }
예제 #2
0
 public int CompareTo(MFIEntry other)
 {
     return(Offset.CompareTo(other.Offset));
 }
예제 #3
0
 public int CompareTo(Block other) => Offset.CompareTo(other?.Offset ?? -1);
예제 #4
0
 public int CompareTo([AllowNull] MemoryBlock other)
 {
     return(Offset.CompareTo(other.Offset));
 }
예제 #5
0
 public int CompareTo([AllowNull] CacheEntry other)
 {
     return(Offset.CompareTo(other.Offset));
 }
예제 #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));
 }
예제 #7
0
        public int CompareTo(object obj)
        {
            StartupItem other = obj as StartupItem;

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