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.
advertisement
advertisement
Runtime Test Cases
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
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
If you find any mistake above, kindly email to [email protected]Related Posts:
- Check Computer Science Books
- Practice Computer Science MCQs
- Practice MCA MCQs
- Check C# Books
- Apply for Computer Science Internship