C# bool type (System.Boolean) can only take two values: true or false.
The result of comparison operators: ==, >, < >=, <= is bool type value.
using System;
class Program
{
static void Main(string[] args)
{
double d = 1D;
double d2 = 0.1D;
bool result = d == d2;
Console.WriteLine("result is "+ result);
}
}
The result:
result is False