Skip to content

Instantly share code, notes, and snippets.

@gtcarlos
Last active August 29, 2015 14:17
Show Gist options
  • Save gtcarlos/7deaec2211da5950a2c8 to your computer and use it in GitHub Desktop.
Save gtcarlos/7deaec2211da5950a2c8 to your computer and use it in GitHub Desktop.
using System.IO;
using System;
class Program
{
static void Main()
{
DateTime date1 = new DateTime(2015, 03, 18, 04, 33, 00);
DateTime date2 = new DateTime(2015, 03, 18, 05, 33, 00);
double hours = date2.Subtract(date1).TotalHours;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment