Boolean.CompareTo(Object) Method in C#


The Boolean.CompareTo(Object) method in C# compares this instance to a specified object and returns an integer that indicates their relationship to one another.

Syntax

Following is the syntax −

public int CompareTo (object ob);

Above, the parameter ob is an object to compare to this instance, or null.

Example

Let us now see an example to implement the Boolean.CompareTo(Object) method −

using System;
public class Demo {
   public static void Main(){
      bool b1 = false;
      object b2 = false;
      int res = b1.CompareTo(b2);
      if (res > 0)
         Console.Write("b1 > b2");
      else if (res < 0)
         Console.Write("b1 < b2");
      else
         Console.Write("b1 = b2");
   }
}

Output

This will produce the following output −

b1 = b2

Updated on: 08-Nov-2019

65 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements