Home > Articles > Programming > C#

Using the New Null Conditional Operator in C# 6

Bill Wagner, author of Effective C#: 50 Specific Ways to Improve Your C#, Second Edition, shows how to use the new null conditional operator in C# 6 to reduce code size, decrease bug counts, and make code more readable.
Like this article? We recommend

One of the most versatile and useful additions to the C# language in version 6 is the null conditional operator. As I've been using C# 6 in my projects, I'm finding more and more scenarios in which this operator is the simplest and clearest way to express my intent.

Ask yourself how much of your code must check a variable against the null value. Chances are, it's a lot of code. (If not, I'd worry about the quality of your codebase.) In every one of those null checks, the null conditional operator may help you to write cleaner, more concise code. We all want our code to be as clear and concise as possible, so let's explore this feature.

Null Conditional Operator Syntax

The null conditional operator (?.) is colloquially referred to as the "Elvis operator" because of its resemblance to a pair of dark eyes under a large quiff of hair. The null conditional is a form of a member access operator (the .). Here's a simplified explanation for the null conditional operator:

The expression A?.B evaluates to B if the left operand (A) is non-null; otherwise, it evaluates to null.

Many more details fully define the behavior:

  • The type of the expression A?.B is the type of B, in cases where B is a reference type. If B is a value type, the expression A?.B is the nullable type that wraps the underlying value type represented by B.
  • The specification for the feature mandates that A be evaluated no more than once.
  • The null conditional operator short-circuits, which means that you can chain multiple ?. operators, knowing that the first null encountered prevents the remaining (rightmost) components of the expression from being evaluated.

Let's look at some examples to explain those behaviors. Consider this simplified Person class:

public class Person
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public int Age { get; set; }
}

Assume that p represents a person. Consider these two statements:

var name = p?.FirstName;
var age = p?.Age;

The variable name is a string. The value of name depends on the value of p. If p is null, name is null. If p is not null, name is the value of p.FirstName. Note that p.FirstName may be null even when p is not.

The variable age is an int? (which is another way of specifying a Nullable<int>). As with name, the value of age depends on the value of p. If p is null, age is an int? with no value. If p is non-null, age is the wrapped value of p.Age.

That's the basics. The power of this feature come from all the scenarios where this feature enables cleaner code.

Code Cleanup with the Null Conditional Operator

Suppose people is a variable that represents an IList<Person>. Now, we have a couple of levels of member access to navigate, and one of those levels uses the indexer syntax ([ ]). We could write this statement:

var thisName = people?[3]?.FirstName;

The ?[] syntax has the same semantics as the ?. operator: It's how you access the indexer on an array, or a class that implements an indexer. The rules for its behavior are the same. If people is null, thisName is assigned the value null. If people[3] is null, thisName is assigned the value null. Otherwise, thisName is assigned the value of people[3].FirstName. However, if people is not null, but has fewer than four elements, accessing people[3] will still throw an OutOfRangeException.

In the earlier example, I used the null conditional operator on both member accesses. That's a typical pattern because the null conditional operator short-circuits. The evaluation proceeds from left to right, and it stops when the expression evaluates to null.

Let's look at a second example. Consider this enhancement (shown in bold) to the Person class so that it contains a reference to a person's spouse:

public class Person
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public int Age { get; set; }
    public Person Spouse { get; set; }
}

You would retrieve the spouse's name as follows:

var spouseName = p?.Spouse?.FirstName;

Semantically, this is roughly equivalent to the following:

var spouseName = (p == null) ? null : (p.Spouse == null) ? null : p.Spouse.FirstName;

or, in a more verbose form:

var spouseName = default(string);
if (p != null)
{
    if (p.Spouse != null)
    {
        spouseName = p.Spouse.FirstName;
    }
}

This example shows how much cleaner code becomes by using the null conditional operator. The more lengthy form is quite a bit more verbose. While this example used the ?. operator on each member access, that's not required. You can freely mix the null conditional operator with normal member access. If the above assignment were used in a routine where p had already validated to be non-null, you could assign the spouse's name as follows:

var spouseName = p.Spouse?.FirstName;

Or, if a particular scenario will be called only using people that are married, you can assume the Spouse property will never be null:

var spouseName = p?.Spouse.FirstName;

When you mix the null conditional operator with the traditional member access operator, the resulting expression will return null if the left operand of ?. evaluates to null, and throw a NullReferenceException if the left operand of ?. evaluates to null. Remember that the short-circuiting still applies, so p?.Spouse.FirstName returns null when p is null, whereas p.Spouse?.FirstName throws a NullReferenceException when p is null.

Other Scenarios

There are a couple more interesting scenarios that ?. enables. I've often used it for raising events. A typical scenario is when a type supports INotifyPropertyChanged. Let's expand the Person class to support this interface, and raise the PropertyChanged event whenever one of the properties changes.

Here is how I would implement the FirstName property:

public string FirstName
{
  get { return firstName; }
  set
  {
    if (value != firstName)
    {
      firstName = value;
      PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(FirstName)));
    }
  }
}
private string firstName;

Examine the highlighted line of code carefully. I'm also using the new nameof operator. (I'll cover that in more detail in a later article.) This line uses the null conditional operator to raise the PropertyChanged event only if code has registered a handler on that event. It would be nice if I could put the ? directly before the invocation , but that would lead to syntactic ambiguities. The C# 6 team disallowed this syntax. That's why I'm explicitly using the Invoke method on the System.Delegate class to invoke the event handler. Astute readers may be wondering if this usage is thread-safe. In earlier versions of C#, we would write this construct as follows:

var handler = PropertyChanged;
if (handler != null)
{
    handler(this, new PropertyChangedEventArgs("FirstName"));
}

We would capture the current value of the event handler, and then test that value and invoke the handler if it was not null. The null conditional operator does that same work for us. It evaluates the left operand of the ?. operator only once, storing the result in a temporary variable. In this construct, that's important for thread safety. It's also important in many other scenarios, as I describe shortly.

Let's return to this example, with a small change:

var spouseName = GetPerson()?.Spouse?.FirstName;

Notice that the variable p has been replaced by a method call. That method call may have side effects or performance implications. For example, suppose GetPerson() makes a database call to find the current user. Earlier, I translated that expression to a longer version using if statements. The actual translation is more like the following code:

var spouseName = default(string);
var p = GetPerson();
if (p != null)
{
    var pSpouse = p.Spouse;
    if (pSpouse != null)
    {
        spouseName = p.Spouse.FirstName;
    }
}

Notice that GetPerson() is called only once. Also, if GetPerson() returns a non-null object, GetPerson().Spouse is evaluated only once (through the temporary variable p). The result of this work is that you can use the null conditional operator in scenarios that reference return values from property accessors, indexers, or method access without worrying about possible side-effects.

The event-handling scenario is certainly the most common delegate usage for ?. but it isn't the only one. We can create filters that handle logging based on a delegate type:

public class Logger
{
    private Func<Severity, bool> Publish;

    public void GenerateLog(Severity severity, string message)
    {
        if (Publish?.Invoke(severity) ?? true)
        {
            SaveMessage(severity, message);
        }
    }
}

This portion of a Logger class uses the Publish delegate to determine whether a message should be written to the log. It uses the ?. operator to safely check an optional delegate that filters messages. It also leverages the existing ?? operator so that if the Publish delegate is null, all messages are published. It's syntactic sugar of the sweetest kind.

Finally, there is one other scenario in which the null conditional operator comes in quite handy: variables that may implement an interface. This usage is particularly useful with IDisposable. When I create libraries, I often create generic methods or classes that create and use objects. Those objects, depending on the type, may or may not implement IDisposable. The following code shows a quick way to call Dispose() on an object only if it implements IDisposable:

var thing = new TFoo();
// later
(thing as IDisposable)?.Dispose();

In practice, I've only used this idiom when I create generic classes that create objects of the types specified by their type parameters.

Some Initial Guidance on Working with the Null Conditional Operator

I've been very aggressive in updating existing code bases with this feature because the new syntax is so much more concise and clear. I've replaced any number of null checks with the null conditional operator. If I combine it with the null propagating operator (??), I can often replace several lines of code with a single expression.

In the process, I've also found bugs that have lingered in a code base. As I described earlier in this article, the code generated by the ?. operator is carefully constructed to evaluate the left side of the operand only once. I've found that handwritten algorithms may not be so carefully managed. Because the replacement can change code behavior, it does require adding tests to make sure that no other code relies on the existing hand-coded algorithm. Overall, though, I've aggressively reviewed classes and replaced code to use the idioms shown in this article. This usage has reduced code size, reduced bug counts, and made my code more readable.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020