I'm studying boxing and unboxing topic from C# 5.0 in a Nutshell by Joseph Albahari and Ben Albahari. Copyright 2012 Joseph Albahari and Ben Albahari, 978-1-449-32010-2, but I need to extend the deep of knowledge and I found the MSDN article: Boxing and Unboxing (C# Programming Guide), on it I found this example code (evidently not intrinsically related to the main topic):
Console.WriteLine (String.Concat("Answer", 42, true));
Once executed it returns:
Answer42True
Why this is happening with the literal 'true' (the same occurs with 'false')?
Thanks in advance.