Long Time ("T") Format Specifier in C#

The Long Time format specifier represents a custom date and time format string.

It is defined by DateTimeFormatInfo.LongTimePattern property.

The custom format string.

HH:mm:ss

Example

using System;
using System.Globalization;
class Demo {
   static void Main() {
      DateTime date = new DateTime(2018, 9, 9, 8, 15, 30);
      Console.WriteLine(date.ToString("T", CultureInfo.CreateSpecificCulture("en-us")));
   }
}

Output

8:15:30 AM
Updated on: 2026-03-11T22:50:43+05:30

496 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements