G Guest Apr 4, 2006 #1 How can I get the difference in minutes between DateTime.Now and DateTime.UtcNow?
M Markus Stoeger Apr 4, 2006 #2 Arne said: How can I get the difference in minutes between DateTime.Now and DateTime.UtcNow? Click to expand... ... something like: DateTime now = DateTime.Now; TimeSpan dt = now - now.ToUniversalTime(); Console.Out.WriteLine(dt.TotalMinutes); hth? Max
Arne said: How can I get the difference in minutes between DateTime.Now and DateTime.UtcNow? Click to expand... ... something like: DateTime now = DateTime.Now; TimeSpan dt = now - now.ToUniversalTime(); Console.Out.WriteLine(dt.TotalMinutes); hth? Max