Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Coordinated universal time in C#

In C#, you can even get universal time coordinated (UTC) like below.

  1. using System;
  2.  
  3. namespace forgetCode
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Co ordinated universal time :"+DateTime.UtcNow);
  10. }
  11.  
  12. }
  13. }



..