bool val;
string input; input = bool.TrueString;
val = bool.Parse(input);
Console.WriteLine("'{0}' parsed as {1}", input, val);
// The example displays the following output:
// 'True' parsed as True

  Boolean.TrueString        将布尔值 true 表示为一个字符串。 此字段为只读

05-28 07:06