Just for curiosity/convenience: C# provides two cool conditional expression features I know of:

string trimmed = (input == null) ? null : input.Trim();

and

string trimmed = (input ?? "").Trim();

I miss another such expression for a situation I face very often:

If the input reference is null, then the output should be null. Otherwise, the output should be the outcome of accessing a method or property of the input object.

I have done exactly that in my first example, but (input == null) ? null : input.Trim() is quite verbose and unreadable.

Is there another conditional expression for this case, or can I use the ?? operator elegantly?

link|improve this question

feedback

6 Answers

up vote 11 down vote accepted

Something like Groovy's null-safe dereferencing operator?

string zipCode = customer?.Address?.ZipCode;

I gather that the C# team has looked at this and found that it's not as simple to design elegantly as one might expect... although I haven't heard about the details of the problems.

I don't believe there's any such thing in the language at the moment, I'm afraid... and I haven't heard of any plans for it, although that's not to say it won't happen at some point.

link|improve this answer
I wish we have such null-safe dereferencing operator in C# someday. – Danny Chen Nov 22 '10 at 10:09
Danny: You could already play with it using dynamics if you accept to lose both type safety and speed. Also the elegant "?" syntax must be replaced by an extension method call. The method could be named AndAnd() to mirror andand.rubyforge.org – VirtualBlackFox Nov 22 '10 at 11:23
feedback

Currently we can only write an extension method if you don't want to repeat yourself, I'm afraid.

public static string NullableTrim(this string s)
{
   return s == null ? null : s.Trim();
}
link|improve this answer
feedback

As a workaround you can use Maybe monad.

public static TOut IfNotNull<TIn, TOut>(this TIn v, Func<TIn, TOut> f)
    where TIn : class 
    where TOut: class
{
    if (v == null)
        return null;
    return f(v);
}
link|improve this answer
feedback

http://qualityofdata.com/2011/01/27/nullsafe-dereference-operator-in-c/

This one is also good

//Groovy:
bossName = Employee?.Supervisor?.Manager?.Boss?.Name

//C#:
bossName = Nullify.Get(Employee, e => e.Supervisor, s => s.Manager,
                       m => m.Boss, b => b.Name);
link|improve this answer
the NullSafe extension method is just awesome! – Mvision Mar 9 at 10:44
feedback

I had the same problem I wrote a few little extension methods:

public static TResult WhenNotNull<T, TResult>(
    this T subject, 
    Func<T, TResult> expression)
    where T : class
{
    if (subject == null) return default(TResult);
    return expression(subject);
}

public static TResult WhenNotNull<T, TResult>(
    this T subject, Func<T, TResult> expression,
    TResult defaultValue)
    where T : class
{
    if (subject == null) return defaultValue;
    return expression(subject);
}

public static void WhenNotNull<T>(this T subject, Action<T> expression)
    where T : class
{
    if (subject != null)
    {
        expression(subject);
    }
}

You use it like this;

string str = null;
return str.WhenNotNull(x => x.Length);

or

IEnumerable<object> list;
return list.FirstOrDefault().WhenNotNull(x => x.id, -1);

or

object obj;
IOptionalStuff optional = obj as IOptionalStuff;
optional.WhenNotNull(x => x.Do());

There are also overloads for nullable types.

link|improve this answer
Looks interesting, though I'm not sure what you really gain from that. For my eyes it's not more readable and technically introduces more complexity in the compiled code. – chiccodoro Nov 22 '10 at 12:14
@chiccodoro: in some cases it is more readable, for instance after FirstOrDefault or in similar cases, where you don't need another variable and no if. You can chain them without using lots of variables. It also depends if you allow writing if's in one line or if you force your developers to write it into four lines. – Stefan Steinegger Nov 22 '10 at 12:55
feedback

There's nothing built-in, but you could wrap it all up in an extension method if you wanted (although I probably wouldn't bother).

For this specific example:

string trimmed = input.NullSafeTrim();

// ...

public static class StringExtensions
{
    public static string NullSafeTrim(this string source)
    {
        if (source == null)
            return source;    // or return an empty string if you prefer

        return source.Trim();
    }
}

Or a more general-purpose version:

string trimmed = input.IfNotNull(s => s.Trim());

// ...

public static class YourExtensions
{
    public static TResult IfNotNull<TSource, TResult>(
        this TSource source, Func<TSource, TResult> func)
    {
        if (func == null)
            throw new ArgumentNullException("func");

        if (source == null)
            return source;

        return func(source);
    }
}
link|improve this answer
+1 for the NullSafeTrim. The IfNotNull does not convince me, I can't see a gain in terms of readability, only a gain in code complexity. – chiccodoro Nov 22 '10 at 12:17
@chiccodoro: I'm not convinced by either of these as a solution to this particular "problem", I just thought I'd throw them into the mix! I'd probably use if (foo != null) foo = foo.Trim(); almost every time for this kind of situation, although there are plenty of other situations where it's handy and/or necessary to be able to use an expression rather than a statement. – LukeH Nov 22 '10 at 12:40
feedback

Your Answer

 
or
required, but never shown

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