Date time c# code example

Example 1: c# get time

//Return the time from DateTime object in string format
var timeString = DateTime.Now.ToString("hh:mm:ss");

//Return time in 24h format
var time24 = DateTime.Now.ToString("HH:mm:ss");
  
//Use short time format to return string value
var timeString = DateTime.Now.ToString("t");
var shortTimeStr = DateTime.Now.ToShortTimeString();

//Use long time format
var longTimeStr = DateTime.Now.ToLongTimeString();
var longtimestr = DateTime.Now.ToString("T");

//Return a TimeSpan from midnight
var timeSpan = DateTime.Now.TimeOfDay;

Example 2: c# date

using System;
class Test {
   static void Main() {
      //print current datetime
      Console.WriteLine (DateTime.Now.ToString());
      //make a custom datetime
      DateTime dt = new DateTime(2018, 7, 24);
      Console.WriteLine (dt.ToString());
   }
}

Example 3: c# datetime

// -------------------- DATE and TIME --------------------- //

// ------- DATETIME ------- //
// Create a DateTime object 
var year = 2020;
var month = 12;
var day = 3;

var date = new DateTime(year, month, day);


// Get the current date or time
var today = DateTime.Today;
var now = DateTime.Now;

Console.WriteLine(now.Hour);  // To get only the hour
Console.WriteLine(now.Minute);  // To get only the minutes


// How to modify DateTime objects?
var now = DateTime.Now;
var tomorrow = now.AddDay(1);
var monthBefore = now.AddMonths(-1);


// Convert DateTime to different string formats
var now = DateTime.Now;
string longDate = now.ToLongDateString();
string shortDate = now.ToShortDateString();
string normalDate = now.ToString("yyyy-MM-dd HH:mm");

// Convert string to DateTime
DateTime myDate = DateTime.Parse("2012-07-12");
//OR
DateTime myDate = DateTime.ParseExact("2009-05-08 14:40:52,531", "yyyy-MM-dd HH:mm:ss,fff",null);
 


// ------- TIMESPAN ------- //
// In this case we are working with duration or time intervals

// Create a TimeSpan object 
var hours = 2;
var minutes = 1;
var seconds = 7;

var timeSpan = new TimeSpan(hours, minutes, seconds);


// Get the timespan in hours, minutes, seconds,... 
var hourSpan = TimeSpan.FromHours(2);
var secondSpan = TimeSpan.FromSeconds(34);


// Convert DateTime to TimeSpan
var start = DateTime.Now;
var end = DateTime.Now.AddMinutes(90);

var duration = end - start; // The difference between 2 DateTimes returns a TimeSpan


// How to modify TimeSpan objects?
var duration = new TimeSpan(3, 6, 9);

var newDuration = duration.Add(TimeSpan.FromSeconds(26))       // Add 26 seconds
var newDuration = duration.Subtract(TimeSpan.FromSeconds(12))  // Subtract 12 seconds

  
// Convert a TimeSpan to a total of hours, minutes, seconds,... 
var timeSpan = new TimeSpan(2, 1, 0);
var totalMinutes = timeSpan.TotalMinutes; // Converts 2 hours and 1 minute to (60*2 + 1) minutes


// Convert a String to a TimeSpan
var duration = TimeSpan.Parse("04:07:12");
//OR
var duration = TimeSpan.ParseExact("23:59", @"hh\:mm", null) // This also verify if string is in that exact format of "hh:mm"

Example 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));

Example 5: C# time

//assigns default value 01/01/0001 00:00:00
DateTime dt1 = new DateTime(); 

//assigns year, month, day
DateTime dt2 = new DateTime(2015, 12, 31); 

//assigns year, month, day, hour, min, seconds
DateTime dt3 = new DateTime(2015, 12, 31, 5, 10, 20);
 
//assigns year, month, day, hour, min, seconds, UTC timezone
DateTime dt4 = new DateTime(2015, 12, 31, 5, 10, 20, DateTimeKind.Utc);