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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 22-Jun-2020

96 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements