In C#, how can I get the current DateTime in the following format? 2011-08-10T21:36:01.6327538Z
|
Keep in mind that DateTime.Now is sometimes only precise to a thousandth of a second, depending on the system clock. This page shows the following:
However, if you populate the Also, |
|||||||||||||
|
|
If you want your times in UTC (which is what the Z implies) then you need to ensure that they are UTC times... i.e.
or assuming that you know that your datetime is local...
FWIW: DateTime.UtcNow is faster than DateTime.Now because it doesn't need to do a timezone lookup, on Compact Framework that difference can be very noticeable for some reason. |
||||
|
|
|
You can try either:
which also includes the timezone component. - OR -
|
|||
|
|
|
Try this:
and check out this msdn link |
||||
|
|