Ошибка CS0201 - не могу понять, что не так с моим кодом - PullRequest
0 голосов
/ 26 января 2019

Я хочу, чтобы пользователь ввел свое имя и получил консоль. Не могу понять, что я делаю здесь не так ...

РЕДАКТИРОВАТЬ: хорошо выглядит, как 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
    }
}

1 Ответ

0 голосов
/ 26 января 2019

Вам не хватает скобок после Console.Read, должно быть следующим Console.Read()

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...