Some examples and tips on C# DateTime formatting using string.Format() or .ToString() methods.
Standard formats are typically used when you need a fast string representation of your DateTime object based on current culture.
DateTime date = DateTime.Now;
// Short date:
string.Format("{0:d}", date) // 11/3/2024
// Long date:
string.Format("{0:D}", date) // Sunday, November 3, 2024
// Short time:
string.Format("{0:t}", date) // 5:07 AM
// Long time:
string.Format("{0:T}", date) // 5:07:24 AM
// Full date/time (short time):
string.Format("{0:f}", date) // Sunday, November 3, 2024 5:07 AM
// Full date/time (long time):
string.Format("{0:F}", date) // Sunday, November 3, 2024 5:07:24 AM
// General date/time (long time):
string.Format("{0:g}", date) // 11/3/2024 5:07 AM
// General date/time (long time):
string.Format("{0:G}", date) // 11/3/2024 5:07:24 AM
// Sortable date/time:
string.Format("{0:s}", date) // 2024-11-03T05:07:24
Custom formats are useful when you need more flexibility on the output string format.
DateTime date = DateTime.Now;
string.Format("{0:MM/dd/yyyy}", date) // 11/03/2024
string.Format("{0:MMMM dd, yyyy}", date)// November 03, 2024
string.Format("{0:MMM yyyy}", date) // Nov 2024
string.Format("{0:hh:mm tt}", date) // 05:07 AM
// Year patterns:
string.Format("{0:yy yyy yyyy}", date) // 24 2024 2024
// Month patterns:
string.Format("{0:MM MMM MMMM}", date) // 11 Nov November
// Day patterns:
string.Format("{0:dd ddd dddd}", date) // 03 Sun Sunday
// Hour
string.Format("{0:hh HH tt}", date) // 05 05 AM
// Minute, second, second fraction
string.Format("{0:mm ss ffff}", date) // 07 24 7008
When you format a DateTime with DateTime.ToString() you can also specify the culture to use.
using System.Globalization;
// ...
DateTime date = DateTime.Now;
// InvariantCulture
CultureInfo invC = CultureInfo.InvariantCulture;
date.ToString("f", invC) // Sunday, 03 November 2024 05:07
date.ToString("d", invC) // 11/03/2024
date.ToString("t", invC) // 05:07
// German CultureInfo
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC) // Sonntag, 3. November 2024 05:07
date.ToString("d", deC) // 03.11.2024
date.ToString("t", deC) // 05:07
// French CultureInfo
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC) // dimanche 3 novembre 2024 05:07
date.ToString("d", frC) // 03/11/2024
date.ToString("t", frC) // 05:07
// Spanish CultureInfo
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC) // domingo, 3 de noviembre de 2024 5:07
date.ToString("d", esC) // 03/11/2024
date.ToString("t", esC) // 5:07
Any characters not used by the formatter is reported in the result string. If you need to enter text with reserved characters that must be inserted between two ' (single quote).
DateTime date = DateTime.Now;
// Escaped date text
string.Format("{0:'y:' yyyy' m:' M 'd:' d}", date) // y: 2024 m: 11 d: 3
// Force time format to use ':' as separator ()
string.Format("{0:HH':'mm}", date) // 05:07
A simple tool for test your format string.