up vote 10 down vote favorite
3
share [g+] share [fb]

The () seems silly. is there a better way?

For example:

ExternalId.IfNotNullDo(()=>ExternalId=ExternalId.Trim());

link|improve this question

feedback

4 Answers

up vote 12 down vote accepted

Sort of! There is a new idiom in town, that is nice and may help you in some cases. It is not fully what you want, but sometimes I think you will like it.

Since underscore ("_") is a valid C# identifier, it is becoming a common idiom to use it as a parameter name to a lambda in cases where you plan to ignore the parameter anyway. If other coders are aware of the idiom, they will know immediately that the parameter is irrelevant.

For example:

ExternalId.IfNotNullDo( _ => ExternalId=ExternalId.Trim());

Easy to type, conveys your intent, and easier on the eyes as well.

Of course, if you're passing your lambda to something that expects an expression tree, this may not work, because now you're passing a one-parameter lambda instead of a no-parameter lambda.

But for many cases, it is a nice solution. You can find out more about it here.

link|improve this answer
8  
I really don't see how this is better than (). Swapping slightly ugly syntax for slightly ugly pseudo-syntax doesn't seem like a win. – Greg Beech Mar 25 '09 at 8:35
1  
Well, you're definitely welcome to your opinion. It is a subjective matter. But to me it greatly reduces visual clutter, is easier to read, and is easier to type. The original question was motivated by a dislike of the () syntax, so this presents an alternative. – Charlie Flowers Mar 25 '09 at 9:28
Awesome! This is what I was after. Not Quite as ugly and at least it's an option. – brendanjerwin Mar 25 '09 at 11:08
1  
In F#, _ is a matchall pattern, so it's nice having similarity when having to use C#. Many of my event handlers look like "foo += (,_) ...". – MichaelGG Mar 29 '09 at 20:51
2  
A one-parameter lambda is a priest, a two-parameter lambda is a beast. But I will bet a striped pajama, you've never seen a three-parameter lambda. – djacobson Nov 16 '10 at 17:33
show 3 more comments
feedback

For a lambda, no: you need () =>

Is it for a delegate or an expression? For delegates, another option is delegate {...}. This may or may not be desirable, depending on the scenario. It is more keys, certainly...

In some cases (not this one) you can use a target method directly - i.e.

ExternalId.IfNotNullDo(SomeMethod);
link|improve this answer
feedback

No, there isn't. Lambda expressions are optimised (in terms of syntax) for the single parameter case.

I know that the C# team feels your pain, and have tried to find an alternative. Whether there ever will be one or not is a different matter.

link|improve this answer
feedback

Essentially what you're looking for is the inverse of the ?? null coalescing operator (which is called Nullable<T>.GetValueOrDefault() under the covers) - problem is C# doesn't provide a neat OOTB answer.

Don't know exactly what you're doing but as you are doing:

ExternalId.IfNotNullDo(()=>ExternalId=ExternalId.Trim());

you might also find a use for:

class NullExtensions
{
    public T DefaultOr<T>( this T that, Func<T> transform)
    {
        return that!=default(T) ? transform(that) : default(T);
    }
}

which would enable:

var result = input.DefaultOr( _ => _.Trim());

(in general, I'd be trying to steer away from reusing / mutating variables as you seem to be doing and instead going in an Introduce Explaining Variable / Split Temporary Variable direction i.e., use a new variable rather than value = value.DefaultOr( _ => _.Trim());)

link|improve this answer
The question is about lambda syntax, not the actual null check. – brendanjerwin Nov 8 '11 at 12:28
@brendanjerwin: There should be a Badge for a 3 year delayed Correct downvote :D - guilty as charged. You suggesting a delete or just want a big fat zero beside an irrrelevant answer? – Ruben Bartelink Nov 8 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

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