Here’s a fun quickie! I needed to translate a C# DateTime into W3C format. Here’s how I did it, courtesy of StackOverflow:
DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss.fffffffzzz"); // 2012-12-04T17:10:12.5880605-05:00
Shablam!
Here’s a fun quickie! I needed to translate a C# DateTime into W3C format. Here’s how I did it, courtesy of StackOverflow:
DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss.fffffffzzz"); // 2012-12-04T17:10:12.5880605-05:00
Shablam!