vote up 3 vote down star
1

An XML attribute declared as xs:boolean can acceptable be "true", "false", "0" or "1". However, in .NET, Boolean.Parse() will only accept "true" or "false". If it sees a "0" or "1", it throws a "Bad Format" exception.

So, given that, what's the best way to parse such a value into a Boolean?

(Unfortunately, I'm limited to .NET 2.0 solutions, but if v3.5 offers something, I'd love to hear about it.)

flag

75% accept rate

3 Answers

vote up 10 vote down check

I think that XmlConvert has all the methods for converting between common language runtime types and XML types. Especially XmlConvert.ToBoolean handles exactly the boolean values (valid strings are "1" or "true" for true and "0" or "false" for false).

link|flag
Excellent.. Exactly what I was looking for (knew I should have spent more time poking through the .Net Library Reference) – James Curran Nov 5 '08 at 15:22
vote up 0 vote down

Sanitise the data before attempting to parse it:

 string InnerText = yourXmlNode.InnerText;    
if (InnerText.Equals("0"))
    InnerText = "false";
else if (InnerText.Equals("1"))
    InnerText = "true";

Any other entry than true, false, 0 or 1 will still throw a "Bad Format" exception (as it should be).

link|flag
vote up 2 vote down

Using CBool instead of Boolean.Parse should do the trick: although you'll have to embed it in a try/catch block (which wouldn't be required when using Boolean.TryParse), it will successfully convert most 'sensible' boolean values, including true/false and 0/1.

Edit: as pointed out in a comment, this answer is kinda useless for C# programmers, as CBool is a VB-ism. It maps to Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean, which is not suitable for general consumption. Which makes the XMLConvert class pointed out in the accepted answer an even better alternative.

link|flag
I'm only seeing "CBool" defined for VB6, not for .NET. It's possible that VB.NET is aliasing it to some Microsoft.VisualBasic.* method, but I'm using C#, so I'd need to know that underlying method to call. – James Curran Nov 5 '08 at 15:25

Your Answer

Get an OpenID
or

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