- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
UInt64.CompareTo() Method in C# with Examples
The UInt64.CompareTo() method in C# is used to compare the current instance to a specified object or UInt64 and returns an indication of their relative values.
Syntax
Following is the syntax −
public int CompareTo (object val); public int CompareTo (ulong val;
Above, the value for the 1st syntax is an object to compare. The value for 2nd syntax is an unsigned integer to compare.
The return value is 0 if the current instance is equal to value. It’s less than zero if the current instance is less than Val. The return value is more than zero if the current instance is greater than the value.
Example
Let us now see an example to implement the UInt64.CompareTo() method −
using System; public class Demo { public static void Main(){ ulong val1 = 257876; ulong val2 = 5657655; int res = val1.CompareTo(val2); Console.WriteLine("Return value (comparison) = "+res); if (res > 0) Console.WriteLine("val1 > val2"); else if (res < 0) Console.WriteLine("val1 < val2"); else Console.WriteLine("val=val2"); } }
Output
This will produce the following output −
Return value (comparison) = -1 val1 < val2
Example
Let us now see another example to implement the UInt64.CompareTo() method −
using System; public class Demo { public static void Main(){ ulong val1 = 258768768; object val2 = (ulong)1765765; int res = val1.CompareTo(val2); Console.WriteLine("Return value (comparison) = "+res); if (res > 0) Console.WriteLine("val1 > val2"); else if (res < 0) Console.WriteLine("val1 < val2"); else Console.WriteLine("val=val2"); } }
Output
This will produce the following output −
Return value (comparison) = 1 val1 > val2
- Related Articles
- UInt64.Equals Method in C# with Examples
- UInt64.GetHashCode() Method in C# with Examples
- UInt64.GetTypeCode() Method in C# with Examples
- UInt64.ToString() Method in C# with Examples
- UInt16.CompareTo() Method in C# with Examples
- Int32.CompareTo Method in C# with Examples
- Int64.CompareTo Method in C# with Examples
- UInt32.CompareTo() Method in C# with Examples
- UInt64.MaxValue Field in C# with Examples
- UInt64.MinValue Field in C# with Examples
- CompareTo() method in C#
- Int16.CompareTo() Method in C#
- C# Enum CompareTo Method
- MathF.Tan() Method in C# with Examples
- MathF.Tanh() Method in C# with Examples

Advertisements