How do I perform a null-check on a dynamic object?

Pseudo code:

public void Main() {
    dynamic dynamicObject = 33;
    if(true) { // Arbitrary logic
        dynamicObject = null;
    }
    Method(dynamicObject);
}

public void Method(dynamic param) {
    // TODO: check if the content of 'param' is equal to null
}
link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Are you worried about the possibility the dynamic object will have a custom equality operator that will change the way the null is interpreted? If so just use Object.ReferenceEquals

if (Object.ReferenceEquals(null, param)) {
  .......
}
link|improve this answer
+1 Sure. You can lose the Object., though – Ani Aug 11 '11 at 16:47
@Ani not sure what' your getting at there. – JaredPar Aug 11 '11 at 16:51
You could just write ReferenceEquals(null, param). I can't believe from the ~5 questions on this topic at SO didn't solve it this simply. – Seb Nilsson Aug 11 '11 at 16:53
@JaredPar: Since all C# types that can contain method definitions extend System.Object (AFAIK), it isn't necessary to qualify. (Not all that important really.) – Ani Aug 11 '11 at 16:53
@Ani gotcha. I prefer the long hand version because it reduces the possibility that you bind to a more local ReferenceEquals implementation that has different behavior – JaredPar Aug 11 '11 at 16:56
show 2 more comments
feedback

You can always just make the param of type object, that's what the compiler is doing. When you type a parameter dynamic it just means within that method only it is using dynamic invoke for all uses of param, but outside it's just a signature of type object. A more powerful usage of your dynamicObject would be to have overloads of the method you are calling, so if you keep your example the same and just have two overloads it would call one of the two methods based on the runtime type, and you can always add more for more types.

public void Main() {
    dynamic dynamicObject = 33;
    if(true) { // Arbitrary logic
        dynamicObject = null;
    }
    Method(dynamicObject);
}
public void Method(int param) {
  //don't have to check check null
  //only called if dynamicObject is an int
}
public void Method(object param) {
// will be called if dynamicObject is not an int or null
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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