I t开发者_如何学JAVAried to load a New solution > C# > Console project, while pressing Ctrl+F5, it does not run or showing anything, do I need to install .NET SDK?
I could launch the GTK# windows create on my own.
Looks like a bug.
Right click your project, do Options, go to Run: General, and turn off "Run on external console".
That's probably because your program isn't doing anything, so the console window closes instantly.
Try adding Console.ReadKey()
to the Main
method.
精彩评论