-
-
Notifications
You must be signed in to change notification settings - Fork 16
ExtendedNumerics.BigDecimal.CompareTo(System.Nullable_int_)
Adam White edited this page Oct 7, 2024
·
1 revision
Compares the current instance to a nullable System.Int32 value and returns
an integer that indicates whether the current instance precedes, follows, or
occurs in the same position in the sort order as the nullable System.Int32 value.
public int CompareTo(System.Nullable<int> other);
other
System.Nullable<System.Int32>
The nullable System.Int32 value to compare with this instance.
System.Int32
A return value of less than zero means this instance precedes the nullable System.Int32 value in the sort order.
A return value of zero means this instance occurs in the same position in the sort order as the nullable System.Int32 value.
A return value of greater than zero means this instance follows the nullable System.Int32 value in the sort order.