You are on page 1of 1

using System;

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

namespace ConsoleApp12
{
class Program
{
static void Main(string[] args)
{
Nullable<DateTime> q = null;

Console.WriteLine(q.GetValueOrDefault());
Console.WriteLine(q.HasValue);

//Console.WriteLine(q.Value);
Console.ReadLine();
}
}
}

You might also like