Код: Выделить всё
using System;
namespace UserInputExample
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter your name: ");
string name = Console.ReadLine();
Console.WriteLine("Hello " + name);
}
}
}
Код: Выделить всё
using System;
Console.Write("Enter your name: ");
string name = Console.ReadLine();
Console.WriteLine("Hello " + name);
Подробнее здесь: https://stackoverflow.com/questions/793 ... the-full-c
Мобильная версия