vote up 6 vote down star
5

Does the method get called with a null value or does it give a null reference exception?

MyObject myObject = null;
myObject.MyExtensionMethod(); // <-- is this a null reference exception?

If this is the case I will never need to check my 'this' parameter for null?

flag

76% accept rate
7  
Why not just try it? – Nick Whaley May 11 at 8:38
It never hurts to discuss these things. – tpower May 11 at 11:29

5 Answers

vote up 16 vote down check

That will work fine (no exception). Extension methods don't use virtual calls (i.e. it uses the "call" il instruction, not "callvirt") so there is no null check unless you write it yourself in the extension method. This is actually useful in a few cases:

public static bool IsNullOrEmpty(this string value)
{
    return string.IsNullOrEmpty(value);
}
public static void ThrowIfNull<T>(this T obj, string parameterName)
        where T : class
{
    if(obj == null) throw new ArgumentNullException(parameterName);
}

etc

Fundamentally, calls to static calls are very literal - i.e.

string s = ...
if(s.IsNullOrEmpty()) {...}

becomes:

string s = ...
if(YourExtensionClass.IsNullOrEmpty(s)) {...}

where there is obviously no null check.

link|flag
1  
+1, additional note in my answer. – Stefan Steinegger May 11 at 8:55
Marc, you're talking about “virtual” calls – but the same is true for nonvirtual calls on instance methods. I think the word “virtual” here is misplaced. – Konrad Rudolph May 11 at 9:11
@Konrad: It depends on the context. The C# compiler usually uses callvirt even for non-virtual methods, precisely to obtain a null check. – Jon Skeet May 11 at 9:33
I was referring to the difference between call and callvirt il instructions. In one edit I actually tried to href the two Opcodes pages, but the editor barfed at the links... – Marc Gravell May 11 at 9:48
I don't see how this use of extension methods can be any useful, really. Just because it can be done doesn't mean it's right, and as Binary Worrier mentioned below, it looks to me more like an aberration to say the least. – Trap May 11 at 9:56
show 1 more comment
vote up 1 vote down

There are few golden rules when you want in your to be readable and vertical.

  • one worth saying from Eiffel says the specific code encapsulated into a method should work against some input, that code is workable if are met some preconditions and assure an expected output

In your case - DesignByContract is broken ... you are going to perform some logic on a null instance.

link|flag
Bertrand Meyer's such a smart guy – Trap May 11 at 9:59
vote up 7 vote down

Addition to the correct answer from Marc Gravell.

You could get a warning from the compiler if it is obvious that the this argument is null:

default(string).MyExtension();

Works well at runtime, but produces the warning "Expression will always cause a System.NullReferenceException, because the default value of string is null".

link|flag
2  
Why would it warn "always cause a System.NullReferenceException". When in fact, it never will? – tpower May 11 at 9:03
2  
Verified - interesting compiler glitch ;-p +1 for ingenuity – Marc Gravell May 11 at 9:08
@tpower: certainly because this check has never been updated to handle extension methods correctly. I found it when I tried to call an extension method that actually only needs the type of the argument, but I didn't have an instance. Now I have to call a static method which is much longer. – Stefan Steinegger May 11 at 9:37
1  
Luckily, we programmers only care about errors, not warnings :p – JulianR May 11 at 11:45
@JulianR: Yes, some do, some do not. In our release build configuration, we treat warnings as errors. So it just doesn't work. – Stefan Steinegger May 11 at 12:24
show 1 more comment
vote up 4 vote down

A null will be passed to the extension method.

If the method tries to access the object without checking is it null, then yes, it will throw an exception.

A guy here wrote "IsNull" and "IsNotNull" extension methods that check is the reference passed null or not. Personally I think this is an aberration and shouldn't have seen light of day, but it's perfectly valid c#.

link|flag
I agree with you, this only might lead to confusion. – Trap May 11 at 9:47
2  
Indeed, to me it's like asking a corpse "Are you alive" and getting a answer of "no". A corpse can't respond to any question, neither should you be able to "call" a method on a null object. – Binary Worrier May 11 at 10:20
haha! good example! :) – Trap May 11 at 10:27
Ruby does something similar with .nil? - I personally don't see anything wrong with it. It doesn't hurt readability and it can make it more readable - such as a IsNullOrEmpty or any other such combination of expectations. – cfeduke Jul 24 at 17:51
vote up 1 vote down

The extensionmethod is static, so if you don't to anything to the this MyObject it shouldn't be a problem, a quick test should verify it :)

link|flag

Your Answer

Get an OpenID
or

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