Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
true.ToString() 
false.toString();

Output:
True
False

Is there a valid reason for it being "True" and not "true"? It breaks when writing XML as XML's boolean type is lower case, and also isn't compatible with C#'s true/false (not sure about CLS though).

Update

Here is my very hacky way of getting around it in C# (for use with XML)

internal static string ToXmlString(this bool b)
{
    return b.ToString().ToLower();
}

Of course that adds 1 more method to the stack, but removes ToLowers() everywhere.

share|improve this question
1  
What does "it breaks xml" mean? – Andrew Hare Jan 29 '09 at 12:13
2  
I'd replace return b.ToString().ToLower(); with return b ? "true" : "false";. Cleaner, more efficient, less dependant on a method that theoretically could depend on locale (even though it doesn't in current implementations). – Jon Hanna Sep 30 '10 at 13:09
I'm glad I'm not the only one who was totally confused and annoyed by this. By the way, I'm dealing with the same problem. (It's breaking my XML) – Chris Jun 17 '11 at 19:40

7 Answers

up vote 42 down vote accepted

Only people from Microsoft can really answer that question. However, I'd like to offer some fun facts about it ;)

First, this is what it says in MSDN about the Boolean.ToString() method:

Return Value

Type: System.String

TrueString if the value of this instance is true, or FalseString if the value of this instance is false.

Remarks

This method returns the constants "True" or "False". Note that XML is case-sensitive, and that the XML specification recognizes "true" and "false" as the valid set of Boolean values. If the String object returned by the ToString() method is to be written to an XML file, its String.ToLower method should be called first to convert it to lowercase.

Here comes the fun fact #1: it doesn't return TrueString or FalseString at all. It uses hardcoded literals "True" and "False". Wouldn't do you any good if it used the fields, because they're marked as readonly, so there's no changing them.

The alternative method, Boolean.ToString(IFormatProvider) is even funnier:

Remarks

The provider parameter is reserved. It does not participate in the execution of this method. This means that the Boolean.ToString(IFormatProvider) method, unlike most methods with a provider parameter, does not reflect culture-specific settings.

What's the solution? Depends on what exactly you're trying to do. Whatever it is, I bet it will require a hack ;)

share|improve this answer
   
Correct me if I'm wrong, but I don't see anything wrong with the explanation for Boolean.ToString(). bool.TrueString is a read-only field that contains the hardcoded literal "True". Therefore, saying that it returns TrueString is the same as saying it returns the hardcoded literal "True" stored in it, given that returning a string always returns the value and not a reference. – Fernando Neira Feb 15 '12 at 10:22
2  
The observable result is the same. The implementation is not. – Vojislav Stojkovic Feb 16 '12 at 11:23
I assume you know that by using a decompiler, so I could bet that the literals appear because the compiler substituted the variables when compiling... except for the fact that TrueString is not a constant, but just a readonly - important detail -. Therefore, you are right. – Fernando Neira Feb 16 '12 at 14:04

...because the .NET environment is designed to support many languages.

System.Boolean (in mscorlib.dll) is designed to be used internally by languages to support a boolean datatype. C# uses all lowercase for its keywords, hence 'bool', 'true', and 'false'.

VB.NET however uses standard casing: hence 'Boolean', 'True', and 'False'.

Since the languages have to work together, you couldn't have true.ToString() (C#) giving a different result to True.ToString() (VB.NET). The CLR designers picked the standard CLR casing notation for the ToString() result.

The string representation of the boolean true is defined to be Boolean.TrueString.

(There's a similar case with System.String: C# presents it as the 'string' type).

share|improve this answer
1  
They had to accommodate VB from the looks of things – Chris S Jan 29 '09 at 12:31
2  
I would say C# is the "odd" language. Everything public in .NET is CamelCase - System.Boolean, True, System.String, etc - it's C#'s C heritage that lead to the aliasing of String to string, Boolean to bool, True to true, etc. (Although my personal preference is still C#). – stusmith Jan 29 '09 at 13:17
1  
Additionally, the good reason (for me) is converting to lower case is easy while it is hard to make it CamelCase especially when VB is used just like @John Burns said. Otherwise VB user cannot and will never use the ToString() and they forced to use like If(b, "True", "False"). So c# user like me need to sacrifice to use ToLower() :) – CallMeLaNN Jul 11 '11 at 10:13

For Xml you can use XmlConvert.ToString method.

share|improve this answer

It's simple code to convert that to all lower case.

Not so simple to convert "true" back to "True", however.

true.ToString().ToLower() 

is what I use for xml output.

share|improve this answer
Just a typo, It should be ToLower() – Raghav Khunger May 19 '11 at 10:25
In addition of @stusmith answer because to support for many languages, this is nice reason why Microsoft prefer VB look of the boolean ToString() result. – CallMeLaNN Jul 11 '11 at 6:59
I can't believe that the answer was so simple and yet nobody realized it. This should be the correct answer – Damieh Aug 31 '12 at 14:30

How is it not compatible with C#? Boolean.Parse and Boolean.TryParse is case insensitive and the parsing is done by comparing the value to Boolean.TrueString or Boolean.FalseString which are "True" and "False".

EDIT: When looking at the Boolean.ToString method in reflector it turns out that the strings are hard coded so the ToString method is as follows:

public override string ToString()
{
    if (!this)
    {
        return "False";
    }
    return "True";
}
share|improve this answer
5  
Wow... That's probably the only context in C# where the construct "if (!this)" is valid! – DrJokepu Jan 29 '09 at 12:17
so why isn't it return "false" is what I'm asking – Chris S Jan 29 '09 at 12:18
Excactly why is hard to tell. Probably by chance actually... – Rune Grimstad Jan 29 '09 at 14:29

Just thought I'd mention this...
I've just read some clever workaround to deserialize "True" as a boolean type in C# on an msdn blog!

see http://blogs.msdn.com/helloworld/archive/2009/04/03/workaround-to-deserialize-true-false-using-xmlserializer.aspx

share|improve this answer

This probably harks from the old VB NOT .Net days when bool.ToString produced True or False.

share|improve this answer
2  
Prior to .NET the Boolean data type in VB (in fact, all data types) did not have methods. – Dan-o May 5 '09 at 1:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.