VOOZH about

URL: https://gist.github.com/Thorium/1972349

⇱ Timestamp with timezone (YYYYMMDDhhmmssffff+zzzz) · GitHub


Skip to content
Sign in Sign up

Instantly share code, notes, and snippets.

Timestamp with timezone (YYYYMMDDhhmmssffff+zzzz)
let myTimeStamp =
let zone = System.TimeZone.CurrentTimeZone.GetUtcOffset System.DateTime.Now
let prefix = match (zone<System.TimeSpan.Zero) with | true -> "-" | _ -> "+"
System.DateTime.UtcNow.ToString("yyyyMMddHHmmssffff") + prefix + zone.ToString("hhss");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.