Nullable data type of C#

Sourav.Kayal
Posted by Sourav.Kayal under C# category on | Points: 40 | Views : 1522
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test1
{
class Program
{
static void Main(string[] args)
{

int? a;
a = null;
if (a == null)
{
Console.WriteLine("a is null");
}
else
Console.WriteLine("a is not null");
Console.ReadLine();
}
}
}

Comments or Responses

Login to post response