vote up 3 vote down star
1

How can I the code below to return False if usable is anything other than True (anything other than bool), currently my code throws an exception usable is not a bool.

if (!Boolean.Parse(readValue("Useable"))) return true;
return (defined.ContainsKey(key) || (key == "Useable"));
flag

You errr ah... Spelled usable incorrectly... – George Stocker Sep 23 at 13:20
The code is from a previous employee but I hadn't spotted the spelling error! Thanks – Jamie Sep 23 at 13:29

5 Answers

vote up 12 vote down
bool isUseable;
bool.TryParse(readValue("Useable"), out isUseable);

HTH, Kent

link|flag
Should be bool.TryParse(readValue("Useable"), out isTrue), but otherwise I would do it the same way. – rslite Sep 23 at 13:21
+1 Whoops, reposted this, but deleted. – Kyle Rozendo Sep 23 at 13:22
2  
There's no point initialising isUseable in this code. You can remove the assignment -- it's misleading. – Drew Noakes Sep 23 at 13:23
1  
@Drew: not sure about "misleading". If anything, it's more explicit, but perhaps superfluous. I've removed it. – Kent Boogaart Sep 23 at 13:35
1  
@Andrew: looking at Boolean.TryParse in reflector, it does exactly the same string comparison you're doing, so I have to question your benchmark results. – Kent Boogaart Sep 23 at 14:12
show 2 more comments
vote up 7 vote down

This is the simplest and fastest approach:

return "True".Equals(readValue("Useable"), StringComparison.OrdinalIgnoreCase);

Note: Boolean.TryParse is not a good choice as it is significantly slower than a simple string comparison. Please see the results of this test (using Jon Skeet's BenchmarkHelper):

using System;
using BenchmarkHelper;

class Example
{
    static void Main()
    {
    	var results = TestSuite.Create
                ("Boolean.TryParse vs. String comparison", "True", true)
    	    .Add(tryParse)
    	    .Add(stringComparison)
    	    .RunTests()
    	    .ScaleByBest(ScalingMode.VaryDuration);

    	results.Display(ResultColumns.NameAndDuration | ResultColumns.Score,
    			results.FindBest());		
    }

    static Boolean tryParse(String input)
    {
    	Boolean result;
    	Boolean.TryParse(input, out result);
    	return result;
    }

    static Boolean stringComparison(String input)
    {
    	return "True".Equals(input, StringComparison.OrdinalIgnoreCase); 
    }
}

Output:

============ Boolean.TryParse vs. String comparison ============
tryParse         12.118 6.03
stringComparison 21.895 1.00
link|flag
+1 There's no need to do parsing here (if I understand the original question correctly). With this snippet, I would probably invert the syntax so there isn't a function call on a string literal, though. – Jon Seigel Sep 23 at 14:03
Possibly a stupid question but what is the unit of the time value? Is seems that stringComparison uses more time than tryParse or am I reading this wrong? – Lazarus Sep 23 at 14:03
@Jon - What's wrong with a method call on a string literal? If you inverted the syntax you could potentially end up with a NullReferenceException if the result of readValue("Useable") was null. – Andrew Hare Sep 23 at 14:08
@Lazarus - Not a stupid question at all. From msmvps.com/blogs/jon_skeet/…: "A benchmark result has a duration and an iteration count, as well as the descriptive name of the test which was run to produce the result. Results can be scaled so that either the duration or the iteration count matches another result. Likewise a result has a score, which is simply the duration (in ticks, but it's pretty arbitrary) divided by the iteration count... – Andrew Hare Sep 23 at 14:09
... Again, the score can be retrieved in a scaled fashion, using a specified result as a "standard" with a scaled score of 1.0. Lower is always better." – Andrew Hare Sep 23 at 14:10
show 5 more comments
vote up 5 vote down
bool isUseable;
if (bool.TryParse(readValue("Useable"), out isUseable))
    return isUseable;
return false;
link|flag
You could shorten this code to: return bool.TryParse(readValue("Useable"), out isUseable) && isUseable; ...personally I find that more readable. – Drew Noakes Sep 23 at 16:26
vote up 1 vote down

How about:

return (readValue("Useable") == "TRUE");

EDITED as a result of Drew's comment

link|flag
4  
Why do you need ? true : false in this code? – Drew Noakes Sep 23 at 13:24
That's a very good point Drew... answering in the middle of other things! – Lazarus Sep 23 at 13:57
You might also use string.Equals(readValue("Useable"), "TRUE", StringComparison.OrdinalIgnoreCase) as the poster doesn't indicate what case the return value would be. Ordinal comparisons are faster too. – Drew Noakes Sep 23 at 16:29
vote up 0 vote down
var result = Equals(true, myobject);
link|flag
Does this work if myObject is the string True? – Drew Noakes Sep 23 at 16:28

Your Answer

Get an OpenID
or

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