20 lines
462 B
C#
20 lines
462 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
|
|
namespace Exercises_C_Sharp.E07_DateTime
|
|
{
|
|
class Exercise_1
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Sorgen Sie dafür, dass auf der Konsole das heutige Datum ausgegeben wird.
|
|
//Code START
|
|
dynamic dt = -1;
|
|
|
|
//Code ENDE
|
|
Console.WriteLine(dt.ToString("dd.MM.yyyy"));
|
|
}
|
|
}
|
|
} |