PdbReader.Offset.Max C# (CSharp) Method

Max() public static method

public static Max ( Offset a, Offset b ) : Offset
a Offset
b Offset
return Offset
        public static Offset Max(Offset a, Offset b)
        {
            return a.IsLessThan(b) ? b : a;
        }