19 lines
423 B
C#
19 lines
423 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E04_Konsole
|
|
{
|
|
class Exercise_5
|
|
{
|
|
public static void Start()
|
|
{
|
|
string terminalName = string.Empty;
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
Console.WriteLine("Der Name der Konsole wurde auf '{0}' geändert!", terminalName);
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
} |