Can compare DateTime data type with null value? what is output of below code?? why???
static DateTime timestamp;
if (timestamp == null)
{
Console.WriteLine(timestamp.ToString());
}
Can compare DateTime data type with null value? what is output of below code?? why???
static DateTime timestamp;
if (timestamp == null)
{
Console.WriteLine(timestamp.ToString());
}