The default toString() method in datetimeoffset converts the time into string format but loses the milliseconds. Is there anyway to preserve it?
|
For example the format code "o" will print a full time string with milliseconds, or you can create your own format string to match your needs and use the "ffff" specifier to add milliseconds where appropriate.
|
|||
|
You have to use "ffff" in the string format to get miliseconds, like:
Mitja |
|||
|
|
|
You can do this using the f character in your format string.
Gives "23032011-16:58:36"
Gives "23032011-16:59:088562" |
|||
|
|
|
According to the documentation of So you can do this:
|
|||
|
|