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);
}
|
|
Out style:
Nullable style:
|
||
|
|
|
|
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. |
||||
|
|
|
I would probably use the second example. Although I see both as perfectly acceptable. |
||
|
|
|
|
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). |
||||||||
|
|
|
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. |
||||||
|
|
|
I have seen the out variable syntax used in many applications. Personally I like it too. |
||
|
|
|
|
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.
|
||
|
|
|
|
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:
or:
Your second example should either be:
or:
If I were going to implement an extension method for each value type that did what your 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 |
||||
|
|
|
I find both examples to be clunky. I'd choose the |
||||
|