I'm using Visual Studio Code for Linux and I've created simple console application in .NET Core using C# with OmniSharp, which gets a user input. The problem is, that when I debug the application it stops on getting the user input and cannot go forward. It cannot receive the input. There is no error it just doesn't receive the input. The program is waiting endless.
Here is my code:
static void Main(string[] args)
{
string input = Console.ReadLine();
Console.WriteLine("In debug mode you will not see this message... As far as you are using VS code");
}