From 2b544d3030ffc39adf5ec342956e505d061d0408 Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Mon, 29 Aug 2016 14:29:48 +0300 Subject: [PATCH] =?UTF-8?q?K=C3=BCsi=20kautajalt=20nime?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- KonsooliDemo/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/KonsooliDemo/Program.cs b/KonsooliDemo/Program.cs index 5879264..9de7616 100644 --- a/KonsooliDemo/Program.cs +++ b/KonsooliDemo/Program.cs @@ -11,6 +11,9 @@ namespace KonsooliDemo static void Main(string[] args) { Console.WriteLine("Tere Maailm!"); + Console.Write("Mis on sinu nimi? "); + var consoleKeyInfo = Console.ReadLine(); + Console.WriteLine("Tere {0}", consoleKeyInfo); Console.ReadKey(); } }