IsLessThan() public method

public IsLessThan ( Offset o ) : bool
o Offset
return bool
Beispiel #1
0
 public static Offset Max(Offset a, Offset b)
 {
     return(a.IsLessThan(b) ? b : a);
 }
Beispiel #2
0
 public static Offset Max(Offset a, Offset b)
 {
     return a.IsLessThan(b) ? b : a;
 }