Bool.parse method in C#



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

Firstly, set a string −

string str = "true";

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 = "true";
      bool res = bool.Parse(str);
      Console.WriteLine(res);
   }
}

Output

True
Updated on: 2020-06-22T14:50:31+05:30

160 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements