Character.CompareTo(Character) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares two Character
objects numerically.
[Android.Runtime.Register("compareTo", "(Ljava/lang/Character;)I", "")]
public int CompareTo (Java.Lang.Character anotherCharacter);
[<Android.Runtime.Register("compareTo", "(Ljava/lang/Character;)I", "")>]
member this.CompareTo : Java.Lang.Character -> int
Parameters
- anotherCharacter
- Character
the Character
to be compared.
Returns
the value 0
if the argument Character
is equal to this Character
; a value less than
0
if this Character
is numerically less
than the Character
argument; and a value greater than
0
if this Character
is numerically greater
than the Character
argument (unsigned comparison).
Note that this is strictly a numerical comparison; it is not
locale-dependent.
- Attributes
Remarks
Compares two Character
objects numerically.
Added in 1.2.
Java documentation for java.lang.Character.compareTo(java.lang.Character)
.
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.