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 表示為一個字符串。 此字段為只讀
