Short.Compare(Int16, Int16) Method

Definition

Compares two short values numerically.

[Android.Runtime.Register("compare", "(SS)I", "")]
public static int Compare (short x, short y);
[<Android.Runtime.Register("compare", "(SS)I", "")>]
static member Compare : int16 * int16 -> int

Parameters

x
Int16

the first short to compare

y
Int16

the second short to compare

Returns

Int32

the value 0 if x == y; a value less than 0 if x < y; and a value greater than 0 if x > y

Attributes

Remarks

Java documentation for java.lang.Short.compare(short, short).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to