top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Use the Null Coalescing Operator (??) in C# ?

0 votes
166 views
How to Use the Null Coalescing Operator (??) in C# ?
posted May 27, 2016 by Jayshree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Below is a sample code that uses Null Coalescing Operator (??) in C# to find if the vaklue is null . If it is null , then a value of -1 is assigned .

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ACSampleCode
{
    class Program
    {
        static void Main(string[] args)
        {
            int ? input = null;
            int retValue = input ?? -1;
            Console.WriteLine(retValue);
            Console.ReadLine();
        }
    }

}
answer May 27, 2016 by Shivaranjini
...