DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 12/21/2024
D Saturday, December 21, 2024
m December 21
M December 21
y December 2024
Y December 2024

times

t 11:54 AM
T 11:54:06 AM

combos

f Saturday, December 21, 2024 11:54 AM
F Saturday, December 21, 2024 11:54:06 AM
g 12/21/2024 11:54 AM
G 12/21/2024 11:54:06 AM
o 2024-12-21T11:54:06.8220617
r Sat, 21 Dec 2024 11:54:06 GMT
s 2024-12-21T11:54:06
u 2024-12-21 11:54:06Z
U Saturday, December 21, 2024 11:54:06 AM

custom date bits

era

%g AD
gg AD

year

yyyyy 02024
yyyy 2024
yyyy 2024
yy 24
y December 2024

month

MMMM December
MMM Dec
MM 12
%M 12

day

dddd Saturday
ddd Sat
dd 21
%d 21

custom time bits

hour

HH 11
%H 11
hh 11
%h 11

minute

mm 54
%m 54

second

ss 06
%s 6

subsecond

%f 8
ff 82
fff 822
ffff 8228
fffff 82287
ffffff 822879
fffffff 8228790

miscellaneous bits

date separator

%/ /

time separator

%: :

AM/PM

%t A
tt AM

time zone1

%K
%z +0
zz +00
zzz +00:00

Pitfalls and traps

General advice

Dates, times, and time zones are tricky. In .NET, there are subtle differences that can be challenging to spot. My general advice is:

Other gotchas

TimeZoneInfo.ConvertTime(...) returns a DateTime with Kind = Unspecified. For example:

DateTime dt = DateTime.UtcNow;
// dt.ToString("o") -> 2024-12-21T16:54:06.8226301Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2024-12-21T10:54:06.8226301
// sf.Kind -> Unspecified

Note that the Unspecified time lacks a time zone offset in the output. You might be tempted to set its Kind to Local, but this is usually not a good idea:

// don't do this
var sfLocal = DateTime.SpecifyKind(sf, DateTimeKind.Local);
sfLocal.ToString("o") -> 2024-12-21T10:54:06.8226301+00:00

The time is correct, but the time zone offset is not. Chicago is -06:00, not +00:00. "Local" in this context is the server's time zone (-00:00).

1That undesired time zone also shows up in the related format strings %K, %z, zz, and zzz above. Again, these show the time zone of the server, not the time zone the value was converted to. Luckily, DateTimeOffset handles this better:

var dto = DateTimeOffset.UtcNow;
var chicagoDto = TimeZoneInfo.ConvertTime(dto, tz);
// dto.ToString("zzz")        --> +00:00
// chicagoDto.ToString("zzz") --> -06:00

Other surprising things

The Ticks property is not agnostic of time zones/kind:

DateTime utc = DateTime.UtcNow;
DateTime local = utc.ToLocalTime(); // don't do this
DateTime unspecified = TimeZoneInfo.ConvertTime(utc, tz);

// utc.Ticks         --> 638703968468226672
// local.Ticks       --> 638703968468226672
// unspecified.Ticks --> 638703752468226672

I guess it makes sense that Ticks would vary here, but I personally would have guessed that it was always in UTC, sort of like Javascript's getTime.

And DateTimeOffset works in the same spirit by factoring in the offset:

// these are the same for DateTimeOffset, but not DateTime
// dto.Ticks        --> 638703968468226600
// chicagoDto.Ticks --> 638703752468226600
//
// and the difference is the same as the time zone offset ✔️:
// (chicagoDto.Ticks - dto.Ticks) / TimeSpan.TicksPerHour --> -6