Compares this instance to a specified object and returns an
indication of their relative values.
Namespace: log4net.CoreAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Parameters
- r
- Type: System Object
A Level instance or to compare with this instance.
Return Value
Type: Int32A 32-bit signed integer that indicates the relative order of the values compared. The return value has these meanings:
Value | Meaning |
---|---|
Less than zero | This instance is less than r. |
Zero | This instance is equal to r. |
Greater than zero | This instance is greater than r. -or- r is . |
Implements
IComparable CompareTo(Object)Exceptions
Exception | Condition |
---|---|
System ArgumentException | r is not a Level. |
Remarks
r must be an instance of Level or ; otherwise, an exception is thrown.
See Also