VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/uint64-compareto-method-in-c-sharp-with-examples/

⇱ UInt64.CompareTo() Method in C# with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

UInt64.CompareTo() Method in C# with Examples

Last Updated : 11 Jul, 2025
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:
Output:
312312131231 is greater than 523564123
Example 2:
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:
Output:
2324313420 is greater than 687
Example 2: For ArgumentException
Output:
value2 must be null or an instance of UInt64
Exception Thrown: System.ArgumentException
Reference:
Comment
Article Tags:

Explore