Is it possible to override the null-coalescing operator for a class in C#?

Say for example I want to return a default value if an instance is null and return the instance if it's not. The code would look like something like this:

   return instance ?? new MyClass("Default");

But what if I would like to use the null-coalescing operator to also check if the MyClass.MyValue is set?

Of course there is no real need for this (at least I think so) - so before you answer "why would you want to do that" - I am just curious if it's possible.

link|improve this question

Patrik, a use: I wanted to overload string's null-coalescing operator to consider empty as null. Whether that is sensible or whatever, that is a different question. – ANeves Sep 13 '10 at 18:10
feedback

4 Answers

up vote 15 down vote accepted

Good question! It's not listed one way or another in the list of overloadable and non-overloadable operators and nothing's mentioned on the operator's page.

So I tried the following:

public class TestClass
{
    public static TestClass operator ??(TestClass  test1, TestClass test2)
    {
        return test1;
    }
}

and I get the error "Overloadable binary operator expected". So I'd say the answer is, as of .NET 3.5, a no.

link|improve this answer
Good answer. Thank you very much! – Patrik Dec 8 '08 at 10:38
feedback

According to ECMA-334, is is not possible to overload the ?? operator. Similarly, you cannot overload the following operators:

  • =
  • &&
  • ||
  • ?:
  • checked
  • unchecked
  • new
  • typeof
  • as
  • is
link|improve this answer
feedback

Simple answer: No

C# design principles do not allow operator overloading that change semantics of the language. Therefore complex operators such as compound assignment, ternary operator and ... can not be overloaded.

link|improve this answer
Also a good answer. Thank you! – Patrik Dec 8 '08 at 10:41
feedback

If anyone is here looking for a solution, the closest example would be to do this

return instance.MyValue != null ? instance : new MyClass("Default");
link|improve this answer
-1: you are missing the point, you can already do what you propose with OP's code... also please read the question carefully, he is not asking how to do that but if it is possible to overload the null-coalescing operator - which, unfortunately, is not. – ANeves Sep 13 '10 at 18:08
I understand he was asking about overloading the ?? operator and I read the responses saying it was impossible. Therefore I was just providing a solution which does work with the expected result (granted it doesn't use the ?? operator) for anyone who might come across this page looking for something that works. – soniiic Sep 15 '10 at 9:55
1  
+1: because it is relevant AND it clearly states that it is not a real answer but a close example – Jaap Feb 8 '11 at 16:42
1  
@Jaap - Except this will throw a NullReferenceException if instance is null. You'd need it to be (instance != null && instance.MyValue != null) ? instance : new MyClass("Default"); – Bobson Mar 26 at 14: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.