Answers for "c# crete new datetime"

C#
4

c# datetime

var dat1 = new DateTime();
// The following method call displays 1/1/0001 12:00:00 AM.
Console.WriteLine(dat1.ToString(System.Globalization.CultureInfo.InvariantCulture));
// The following method call displays True.
Console.WriteLine(dat1.Equals(DateTime.MinValue));
Posted by: Guest on July-11-2020
-1

instantiate date time variable C#

DateTime dtDate = new DateTime(2020,1,1);
Posted by: Guest on August-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language