Convert DateTime to short time string in CSharp

Description

The following code shows how to convert DateTime to short time string.

Example


using System;//from w w  w  .  j av  a2  s.  com

class Sample 
{
    public static void Main() 
    {
        DateTime myDateTime = new System.DateTime(2001, 5, 16, 3, 2, 15);
    
        Console.WriteLine("Long date string:  \"{0}\"\n", myDateTime.ToShortTimeString());
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    Data Types »




C# Data Types
Bool
Byte
Char
Decimal
Double
Float
Integer
Long
Short
String
C# Array
Array Example
Byte Array
C# Standard Data Type Format
BigInteger
Complex
Currency
DateTime
DateTimeOffset
DateTime Format Parse Convert
TimeSpan
TimeZone
Enum
Null
tuple
var