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
using System;
using System.Linq;
class Demo {
static void Main() {
string str = "true";
bool res = bool.Parse(str);
Console.WriteLine(res);
}
}Output
True