Convert string to bool in C#


To convert a string to a bool, use the Bool.parse method in C# −

Firstly, set a string −

string str = "false";

Now, convert it to bool −

bool.Parse(str);

Here is the complete code −

Example

 Live Demo

using System;
using System.Linq;
class Demo {
   static void Main() {
      string str = "false";
      bool res = bool.Parse(str);
      Console.WriteLine(res);
   }
}

Output

False

Updated on: 22-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements