Parameters
Return Value
A System.Boolean value.
true
if the first length is less than or equal to the second; otherwise, false
.true
if the first length is less than or equal to the second; otherwise, false
.var length1 = new Length("1in"); var length2 = new Length("1in"); bool result = length1 <= length2; // true