DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 1/13/2025
D Monday, January 13, 2025
m January 13
M January 13
y January 2025
Y January 2025

times

t 6:26 AM
T 6:26:45 AM

combos

f Monday, January 13, 2025 6:26 AM
F Monday, January 13, 2025 6:26:45 AM
g 1/13/2025 6:26 AM
G 1/13/2025 6:26:45 AM
o 2025-01-13T06:26:45.6401698
r Mon, 13 Jan 2025 06:26:45 GMT
s 2025-01-13T06:26:45
u 2025-01-13 06:26:45Z
U Monday, January 13, 2025 6:26:45 AM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y January 2025

month

MMMM January
MMM Jan
MM 01
%M 1

day

dddd Monday
ddd Mon
dd 13
%d 13

custom time bits

hour

HH 06
%H 6
hh 06
%h 6

minute

mm 26
%m 26

second

ss 45
%s 45

subsecond

%f 6
ff 64
fff 640
ffff 6404
fffff 64046
ffffff 640469
fffffff 6404694

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") -> 2025-01-13T11:26:45.6406223Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-01-13T05:26:45.6406223
// 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") -> 2025-01-13T05:26:45.6406223+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         --> 638723644056406438
// local.Ticks       --> 638723644056406438
// unspecified.Ticks --> 638723428056406438

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        --> 638723644056406407
// chicagoDto.Ticks --> 638723428056406407
//
// and the difference is the same as the time zone offset ✔️:
// (chicagoDto.Ticks - dto.Ticks) / TimeSpan.TicksPerHour --> -6