19 lines
451 B
C#
19 lines
451 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E07_DateTime
|
|
{
|
|
class Exercise_3
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Sorgen Sie dafür, dass auf der Konsole der 13.02.1998 12:53:52 ausgegeben wird.
|
|
//Code START
|
|
dynamic dt = -1;
|
|
|
|
//Code ENDE
|
|
Console.WriteLine(dt.ToString("dd.MM.yyyy hh:mm:ss"));
|
|
}
|
|
}
|
|
} |