using System; public class Test { public static void Main() { // Example from: http://msdn.microsoft.com/en-us/library/yz2be5wk.aspx Console.WriteLine (String.Concat("Answer", 42, false )); Console.WriteLine (String.Concat("Answer", 42, true )); Console.WriteLine (true.ToString()); } }