Я хочу, чтобы пользователь ввел свое имя и получил консоль. Не могу понять, что я делаю здесь не так ...
РЕДАКТИРОВАТЬ: хорошо выглядит, как Console.Read
это проблема. Не знаю почему.
using System;
namespace Program1
{
// use can use regions to wrap code in them and they can be collapsed
#region
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter ur name : "); // showing a msg to user
string name = Console.ReadLine(); // defining a string variable and getting input from user
Console.WriteLine("Hello " + name); // saying hi to user by adding his name that we asked earlier
Console.WriteLine("Press any key to terminate ...");
Console.Read;
}
#endregion // use can use regions to wrap code in them and they can be collapsed
}
}