Q:

Write a C# Sharp program to display the string representation of a date using the long date format

0

Write a C# Sharp program to display the string representation of a date using the long date format. 

Expected Output :

Friday, August 14, 2009

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise25  
{  
    public static void Main()  
{  
   DateTime august14 = new DateTime(2009, 8, 14, 5, 23, 15);

// Get the long date formats using the current culture.
string [] longaugust14Formats = 
			august14.GetDateTimeFormats('D');

// Display all long date formats.
foreach (string format in longaugust14Formats) {
	Console.WriteLine(format);
}
  }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now