Write a C# Sharp program to display the string representation of a date using the long date format
- برمجة سي شارب
- برمجة
- 2021-06-01
- ahmadghneem
الأجوبة
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);
}
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال