vote up 0 vote down star

Out style:

bool result;
if(something.TryParse(val, out result))
{
    DoSomething(result);
}

Nullable style:

bool? result = something.TryParse2(val);
if(result.HasValue)
{
    DoSomething(result.Value);
}
flag

70% accept rate

8 Answers

vote up 7 vote down check

TryParse(val, out result) is a idiom established by the .NET framework in int.TryParse, DateTime.TryParse, etc. It is likely that people that read the code will be familiar with this idiom, so you should stick to it, unless you find a very good reason not to.

link|flag
Not exactly my preferred option but given the unprecise nature of the question I'll grant the answer =) The established idiom argument is very good. – Cristian Libardo Oct 20 '08 at 18:17
It was an idiom established before the addition of nullabes, though. Microsoft has also broken consistency when a better feature was added, for instance the inconsistant use of FooCollection and Collection<Foo> or FooEventArgs and EventArgs<Foo>. – Adam Lassek Dec 8 '08 at 16:14
vote up 0 vote down

I would probably use the second example. Although I see both as perfectly acceptable.

link|flag
vote up 2 vote down

I think out style is more readable in general. People are less familiar with nullable types (just check the amount of questions about them here), and they'll be even less familiar with a TryParse2 which does not exist in the standard library (or however it's technically called in .NET).

link|flag
Would you reconsider if it were 10 years ago and C# 1.0 had had nullables and you were to choose? – Cristian Libardo Oct 19 '08 at 11:15
Probably, if back then there was a null returning tryparse as well. But now is not 10 years ago. – Vinko Vrsalovic Oct 19 '08 at 11:17
I think that other developers' unfamiliarity with core language features is something that needs a fix, not a workaround. – Robert Rossney Oct 19 '08 at 19:11
And certainly the fix is going wild and writing code for which established idioms already exist. – Vinko Vrsalovic Oct 19 '08 at 21:08
vote up 0 vote down

A nullable type has a Value property which is not nullable of the same type. This is where you do not need to convert a nullable type but rather use the value of the nullable type.

link|flag
Thanks for the heads-up, I've edited my comment. – J c Oct 19 '08 at 11:23
It's best to add these comments as, well, comments on the answer you are commenting to – Vinko Vrsalovic Oct 19 '08 at 11:36
True, but that requires 50 rep. – J c Oct 19 '08 at 15:33
vote up 0 vote down

I have seen the out variable syntax used in many applications.

Personally I like it too.

link|flag
vote up 0 vote down

I prefer the second example because it's a more type inference friendly style of programming. Having an out parameter prevents a developer from using type inference for a particular call.


var result = Int32.TryParse("123");
link|flag
vote up 3 vote down

I don't mean to be unkind. But when you propose a change to a well-established idiom, it undermines confidence if your sample code isn't right.

Your first example should either be:

something result;
if (something.TryParse(val, out result))
{
   DoSomething(result);
}

or:

bool result;
if (bool.TryParse(value, out result))
{
    DoSomething(result);
}

Your second example should either be:

Nullable<something> result = something.TryParse2(val);
if(result.HasValue)
{
    DoSomething(result.Value);
}

or:

bool? result = bool.TryParse2(val);
if (result.HasValue)
{
   DoSomething(result);
}

If I were going to implement an extension method for each value type that did what your TryParse2 seems to do, I wouldn't call it TryParse2. Right now, if a method's name begins with Try, we expect it to return a bool indicating whether or not it succeeded or failed. Creating this new method creates a world where that expectation is no longer valid. And before you dismiss this, think about what was going through your mind when you wrote example code that didn't work, and why you were so sure that result needed to be a bool.

The other thing about your proposal is that it seems to be trying to solve the wrong problem. If I found myself writing a lot of TryParse blocks, the first question I'd ask isn't "How can I do this in fewer lines of code?" I'd ask, "Why do I have parsing code scattered throughout my application?" My first instinct would be to come up with a higher level of abstraction for what I'm really trying to do when I'm duplicating all of that TryParse code.

link|flag
Good point. Naming the nullable method something more suitable (especially something that isn't already "taken") would come across more clearly. I assume you know you can't put extension methods on the type, only instances. – Cristian Libardo Oct 19 '08 at 21:48
You implement extension methods for a type, and you implement them in a static class method that takes an instance of that type as its argument. – Robert Rossney Oct 20 '08 at 18:10
vote up 0 vote down

I find both examples to be clunky.

I'd choose the TryParse because it's an idiom that already exists in the .NET Framework.

link|flag
Interesting. Is it just the examples or do you have an alternative solution? – Cristian Libardo Oct 20 '08 at 18:15
It's not your examples that are clunky: you've done as well as you can do, given the circumstances. It's a limitation of the language. I don't know how I'd change it, though. – Jay Bazuzi Oct 20 '08 at 19:25

Your Answer

Get an OpenID
or

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