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
Users Online
· Guests Online: 64
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C# Program to Display the Date in Various Formats
C# Program to Display the Date in Various Formats
This is a C# Program to display the date in various formats.
Problem Description
This C# Program Displays the Date in Various Formats.
Problem Solution
Here the Date is Displayed in various Formats.
Program/Source Code
Here is source code of the C# Program to Display the Date in Various Formats . The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * 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; } } }
Program Explanation
In this C# Program, we are creating the date object to the DateTime() constructor to get any date. The Date Format Specifier is used to represent a date in various ways. Representation of a date can be done by one of two Date Format Specifiers that is a Short Date Format Specifier or a Long Date Format Specifier.
Runtime Test Cases
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.