Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
Advertisements
