Int64.CompareTo Method is used to compare the current instance to a specified object or Int64 and returns a sign of their relative values. There are 2 methods in the overload list of this method as follows:
- CompareTo(Int64) Method
- CompareTo(Object) Method
Int64.CompareTo(Int64) Method
This method is used to compare the current instance to a specified 64-bit signed integer and returns a sign of their relative values.
Syntax:
public int CompareTo (long value);
Here, it takes integer 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 the above-discussed method:
Example 1:
using System;
class GFG {
public static void Main()
{
long value1 = 10;
long value2 = 20;
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:
10 is less than 20
Example 2:
using System;
class GFG {
public static void Main()
{
get (5, 7);
get (3025, 3025);
get (10, 20);
get (7, -12);
}
public static void get ( long value1,
long 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:
5 is less than 7
3025 is equal to 3025
10 is less than 20
7 is greater than -12
Int64.CompareTo(Object) Method
This method is used to compare the current instance to a specified object and returns a sign of their relative values.
Syntax:
public int CompareTo (object value);
Here, it takes an object to compare, 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 or value is null.
Exception: It throws ArgumentException if value is not an Int64.
Below programs illustrate the use of the above-discussed method:
Example 1:
using System;
class GFG {
public static void Main()
{
try {
long value1 = 10;
object value2 = ( long )5689412587;
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 Int64" );
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
}
|
Output:
10 is less than 5689412587
Example 2: For ArgumentException
using System;
using System.Globalization;
class GFG {
public static void Main()
{
try {
long value1 = 10;
object value2 = 1/3;
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 Int64" );
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
}
|
Output:
value2 must be Int64
Exception Thrown: System.ArgumentException
Reference:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!