PdbReader.Offset.IsLessThan C# (CSharp) Method

IsLessThan() public method

public IsLessThan ( Offset o ) : bool
o Offset
return bool
        public bool IsLessThan(Offset o)
        {
            return this._bytes < o._bytes || (this._bytes == o._bytes && this._bits < o._bits);
        }

Usage Example

示例#1
0
 public static Offset Max(Offset a, Offset b)
 {
     return(a.IsLessThan(b) ? b : a);
 }
All Usage Examples Of PdbReader.Offset::IsLessThan