UInt64.CompareTo() Method in C# with Examples
Last Updated :
01 May, 2019
UInt64.CompareTo Method is used to compare the current instance to a specified object or another UInt64 instance. It returns an integer which shows whether the value of the current instance is less than, equal to, or greater than the value of the specified object or the other UInt64 instance. There are 2 methods in the overload list of this method as follows:
- CompareTo(UInt64) Method
- CompareTo(Object) Method
UInt64.CompareTo(UInt64) Method
This method is used to compare the current instance to a specified 64-bit unsigned long integer and returns an integer which shows whether the value of the current instance is less than, equal to, or greater than the value of the specified 64-bit unsigned long integer.
Syntax:
public int CompareTo (ulong value);
Here, it takes an unsigned long value to compare.
Return Value: It returns a 32-bit signed number indicating the relative values of current instance and value parameter as follows:
- Less than Zero: if Current Instance < value
- Zero: if Current Instance = value
- Greater than Zero: if Current Instance > value
Below programs illustrate the use of UInt64.CompareTo(UInt64) Method:
Example 1:
using System;
class GFG {
public static void Main()
{
ulong value1 = 312312131231;
ulong value2 = 523564123;
int status = value1.CompareTo(value2);
if (status > 0)
Console.WriteLine( "{0} is greater than {1}" ,
value1, value2);
else if (status < 0)
Console.WriteLine( "{0} is less than {1}" ,
value1, value2);
else
Console.WriteLine( "{0} is equal to {1}" ,
value1, value2);
}
}
|
Output:
312312131231 is greater than 523564123
Example 2:
using System;
class GFG {
public static void Main()
{
get (34432425, 708343);
get (3780, 8920);
get (8543453910, 85345340920);
get (7006789, 7006789);
}
public static void get ( ulong value1,
ulong value2)
{
int status = value1.CompareTo(value2);
if (status > 0)
Console.WriteLine( "{0} is greater than {1}" ,
value1, value2);
else if (status < 0)
Console.WriteLine( "{0} is less than {1}" ,
value1, value2);
else
Console.WriteLine( "{0} is equal to {1}" ,
value1, value2);
}
}
|
Output:
34432425 is greater than 708343
3780 is less than 8920
8543453910 is less than 85345340920
7006789 is equal to 7006789
UInt64.CompareTo(Object) Method
This method is used to compare the current instance to a specified object and returns an integer which indicates whether the value of the current instance is less than, equal to, or greater than the value of the object.
Syntax:
public int CompareTo (object value);
Here, it takes the object to compare with this instance, or null.
Return Value: It returns a 32-bit signed number indicating the relative values of current instance and value parameter as follows:
- Less than Zero: if Current Instance < value
- Zero: if Current Instance = value
- Greater than Zero: if Current Instance > value
Exception: It throws ArgumentException if value is not a UInt64.
Below programs illustrate the use of UInt64.CompareTo(Object) Method
Example 1:
using System;
class GFG {
public static void Main()
{
try {
ulong value1 = 2324313420;
object value2 = ( ulong )687.876;
int status = value1.CompareTo(value2);
if (status > 0)
Console.WriteLine( "{0} is greater than {1}" ,
value1, value2);
else if (status < 0)
Console.WriteLine( "{0} is less than {1}" ,
value1, value2);
else
Console.WriteLine( "{0} is equal to {1}" ,
value1, value2);
}
catch (ArgumentException e)
{
Console.WriteLine( "value2 must be null" +
" or an instance of UInt32" );
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
}
|
Output:
2324313420 is greater than 687
Example 2: For ArgumentException
using System;
using System.Globalization;
class GFG {
public static void Main()
{
try {
ulong value1 = 104646549854;
object value2 = 1 / 6;
int status = value1.CompareTo(value2);
if (status > 0)
Console.WriteLine( "{0} is greater than {1}" ,
value1, value2);
else if (status < 0)
Console.WriteLine( "{0} is less than {1}" ,
value1, value2);
else
Console.WriteLine( "{0} is equal to {1}" ,
value1, value2);
}
catch (ArgumentException e)
{
Console.WriteLine( "value2 must be null" +
" or an instance of UInt64" );
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
}
|
Output:
value2 must be null or an instance of UInt64
Exception Thrown: System.ArgumentException
Reference: