36 lines
896 B
C#
36 lines
896 B
C#
/*
|
|
* C# Program to Display the Date in Various Formats
|
|
*/
|
|
using System;
|
|
namespace DateAndTime
|
|
{
|
|
class Program
|
|
{
|
|
static int Main()
|
|
{
|
|
DateTime date = new DateTime(2013,6, 23);
|
|
Console.WriteLine("Some Date Formats : ");
|
|
Console.WriteLine("Date and Time: {0}", date);
|
|
Console.WriteLine(date.ToString("yyyy-MM-dd"));
|
|
Console.WriteLine(date.ToString("dd-MMM-yy"));
|
|
Console.WriteLine(date.ToString("M/d/yyyy"));
|
|
Console.WriteLine(date.ToString("M/d/yy"));
|
|
Console.WriteLine(date.ToString("MM/dd/yyyy"));
|
|
Console.WriteLine(date.ToString("MM/dd/yy"));
|
|
Console.WriteLine(date.ToString("yy/MM/dd"));
|
|
Console.Read();
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
Some Date Formats :
|
|
Date and Time : 6/23/2013 12:00:00 AM
|
|
2013-06-23
|
|
23-Jun-13
|
|
6/23/2013
|
|
6/23/13
|
|
06/23/2013
|
|
06/23/13
|
|
13/06/23 |