DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 4/3/2025
D Thursday, April 3, 2025
m April 3
M April 3
y April 2025
Y April 2025

times

t 10:54 PM
T 10:54:27 PM

combos

f Thursday, April 3, 2025 10:54 PM
F Thursday, April 3, 2025 10:54:27 PM
g 4/3/2025 10:54 PM
G 4/3/2025 10:54:27 PM
o 2025-04-03T22:54:27.5639814
r Thu, 03 Apr 2025 22:54:27 GMT
s 2025-04-03T22:54:27
u 2025-04-03 22:54:27Z
U Thursday, April 3, 2025 10:54:27 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y April 2025

month

MMMM April
MMM Apr
MM 04
%M 4

day

dddd Thursday
ddd Thu
dd 03
%d 3

custom time bits

hour

HH 22
%H 22
hh 10
%h 10

minute

mm 54
%m 54

second

ss 27
%s 27

subsecond

%f 5
ff 56
fff 563
ffff 5633
fffff 56332
ffffff 563320
fffffff 5633206

miscellaneous bits

date separator

%/ /

time separator

%: :

AM/PM

%t P
tt PM

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-04-04T02:54:27.5645735Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-04-03T21:54:27.5645735
// 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-04-03T21:54:27.5645735+00:00

The time is correct, but the time zone offset is not. Chicago is -05: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") --> -05: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         --> 638793320675646456
// local.Ticks       --> 638793320675646456
// unspecified.Ticks --> 638793140675646456

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