DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 3/24/2025
D Monday, March 24, 2025
m March 24
M March 24
y March 2025
Y March 2025

times

t 9:01 PM
T 9:01:59 PM

combos

f Monday, March 24, 2025 9:01 PM
F Monday, March 24, 2025 9:01:59 PM
g 3/24/2025 9:01 PM
G 3/24/2025 9:01:59 PM
o 2025-03-24T21:01:59.8217747
r Mon, 24 Mar 2025 21:01:59 GMT
s 2025-03-24T21:01:59
u 2025-03-24 21:01:59Z
U Monday, March 24, 2025 9:01:59 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y March 2025

month

MMMM March
MMM Mar
MM 03
%M 3

day

dddd Monday
ddd Mon
dd 24
%d 24

custom time bits

hour

HH 21
%H 21
hh 09
%h 9

minute

mm 01
%m 1

second

ss 59
%s 59

subsecond

%f 8
ff 82
fff 821
ffff 8217
fffff 82174
ffffff 821743
fffffff 8217436

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-03-25T01:01:59.8222313Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-03-24T20:01:59.8222313
// 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-03-24T20:01:59.8222313+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         --> 638784613198222737
// local.Ticks       --> 638784613198222737
// unspecified.Ticks --> 638784433198222737

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