server program boolSample for form dummy { // the bool Parse method var a = bool.Parse("true"); var b = bool.Parse("false"); var c = bool.Parse("hovercraft"); trace a, b, c; // the bool ToString method var d = 6 > 2; var e = c.ToString(); trace "Is it ", d, " that 6 > 2? Yes, it is ", e; }