C # a new operator ?? Null coalescing operator

Source: Internet
Author: User
?? "Null coalescing" operator
Is a new operator provided by c #. The function provided by this operator is to determine whether the left-side operand is null. If yes, the return result is the right-side operand, and if not null, the left-side operand is returned.

Let's take a look at the following examples to see how to use this operator:
String message = "Hello World ";
String result = message ?? "Null ";
// The result content here is Hello World

 
Let's take a look at the following example:

String message = null;
String result = message ?? "It's null ";
// The result content here will be It's
Null

For more information about this operator, we can find it in ScottGu's Blog.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.