vote up 1 vote down star

I like readability.

So, I came up with an extension mothod a few minutes ago for the (x =! null) type syntax, called IsNotNull. Inversly, I also created a IsNull extension method, thus

if(x == null) becomes if(x.IsNull())

and

if(x != null) becomes if(x.IsNotNull())

However, I'm worried I might be abusing extension methods. Do you think that this is bad use of Extenion methods?

flag

It's a lot like stackoverflow.com/questions/790810/… – Vadim Sep 29 at 21:50
5  
It's not any shorter, and it's not any clearer. – Pavel Minaev Sep 29 at 21:58
+1 Pavel -- well put. – csharptest.net Sep 29 at 22:28

8 Answers

vote up 7 vote down check

It doesn't seem any more readable and could confuse people reading the code, wondering if there's any logic they're unaware of in those methods.

I have used a PerformIfNotNull(Func method) (as well as an overload that takes an action) which I can pass a quick lambda expression to replace the whole if block, but if you're not doing anything other than checking for null it seems like it's not providing anything useful.

link|flag
vote up 1 vote down

Instead I'd go with something like:

static class Check {
    public static T NotNull(T instance) {
        ... assert logic
        return instance;
    }
}

Then use it like this:

Check.NotNull(x).SomeMethod();
y = Check.NotNull(x);

Personally it's much clearer what is going on than to be clever and allow the following:

if( ((Object)null).IsNull() ) ...
link|flag
vote up 0 vote down

To follow the pattern it should be a property rather than a method (but of course that doesn't work with extensions).

Data values in the System.Data namespace has an IsNull property that determines if the value contains a DbNull value.

The DataRow class has an IsNull method, but it doesn't determine if the DataRow is null, it determines if one of the fields in the data row contains a DbNull value.

link|flag
vote up 2 vote down

I don't find that incredibly useful, but this:

someString.IsNullOrBlank()    // Tests if it is empty after Trimming, too
someString.SafeTrim()         // Avoiding Exception if someString is null

because those methods actually save you from having to do multiple checks. but replacing a single check with a method call seems useless to me.

link|flag
vote up 0 vote down

It can make sense if you, for instance, assume that you might want to throw an exception whenever x is null (just do it in the extension method). However, I my personal preference in this particular case is to check explicitly (a null object should be null :-) ).

link|flag
vote up 1 vote down

You're also introducing method call overhead for something that's a CLR intrinsic operation. The JIT might inline it away, but it might not. It's a micro-perf nitpick, to be sure, but I'd agree that it's not particularly useful. I do things like this when there's a significant readability improvement, or if I want some other behavior like "throw an ArgumentNullException and pass the arg name" that's dumb to do inline over and over again.

link|flag
vote up 1 vote down

There is precedent, in as much as the string class has IsNullOrEmpty

link|flag
2  
Yes, but the OrEmpty part of that provides extra functionality, this just seems like it's adding more typing for no benefit. – Davy8 Sep 29 at 21:43
1  
I personally like the IsNullOrEmpty as its the 'ol two birds one stone approach. – CmdrTallen Sep 29 at 21:44
@Davy8 - Good point – Jaimal Chohan Sep 29 at 21:48
String.IsNullOrEmpty is not defined as an extension method on String, however. – Pavel Minaev Sep 29 at 21:58
1  
Yes but String.IsNullOrEmpty is a static member that takes a string and not called on a null instance of a string. A rather big difference IMO. – csharptest.net Sep 29 at 21:58
vote up 1 vote down

It is perfectly valid to do but I don't think it is incredibly useful. Since extension methods are simply compiler trickery I struggle to call any use of them "abuse" since they are just fluff anyhow. I only complain about extension methods when they hurt readability.

link|flag

Your Answer

Get an OpenID
or

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