Click or drag to resize
UInt16CompareTo Method (UInt16)
Compares this instance to a specified 16-bit unsigned integer and returns an indication of their relative values.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public int CompareTo(
	ushort value
)

Parameters

value
Type: SystemUInt16
An unsigned integer to compare.

Return Value

Type: Int32
A signed number indicating the relative values of this instance and value.Return Value Description Less than zero This instance is less than value. Zero This instance is equal to value. Greater than zero This instance is greater than value.
See Also