I'm trying to run a simple program that writes "Hello world" in VS2017:
namespace OlaMundo
{
class Program
{
static void Main()
{
int num;
System.Console.WriteLine("Número :");
num = System.Console.Read();
System.Console.WriteLine(num);
System.Console.WriteLine("Tecle enter para fechar...");
System.Console.ReadLine();
}
}
}
But when I run it, I encounter the following problem:
"OlaMundo.exe" (CLR v4.0.30319: DefaultDomain): Carregado "C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll". Não é possível localizar ou abrir o arquivo PDB.
"OlaMundo.exe" (CLR v4.0.30319: DefaultDomain): Carregado "C:\Users\tiago\source\repos\C#_Hello_world\OlaMundo\OlaMundo\bin\Debug\OlaMundo.exe". Símbolos carregados.
O programa "[1688] OlaMundo.exe" foi fechado com o código 0 (0x0).
I have already disabled the " Just my code " option and also deleted the " bin " folder of the project and recompiled again. But I got no success.