Which way is preferred in expressions like this:
int? Id
{
get
{
int i;
return Int32.TryParse(Request["id"], out i) ? i : (int?)null;
}
}
is it better to cast on null or create a new Nullable<T> ?
|
feedback
|
|
The best is | |||
feedback
|
|
It doesn't matter, it generates the exact same code. So "better" is merely what style you prefer. Consistent use of int? would be my personal preference. One practical note: in a typical debug session you might well be interested in finding out that null is getting returned. Especially since the data you read doesn't produce what you expect. That becomes very easy if you write the null-returning statement on a separate line:
Get's rid of the cast too. And produces the exact same code | |||
|
feedback
|
|
I tend to prefer the This is also why I call it | |||
|
feedback
|
|
Do whatever is clearest for you. That said I prefer to just return | |||
|
feedback
|
|
The interesting thing is that you only have to define one of the return types. In other words, this will also work:
...even though the compiler suggests you have to cast the null: Type of conditional expression cannot be determined because there is no implicit conversion between 'int' and '< null >' | ||||
|
feedback
|