Convert DateTime to short date string in CSharp

Description

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

Example


using System;//ww w. j  a  v a2s. c om

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.ToShortDateString());
    }
}

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