c# help

Started by
2 comments, last by annoyer101 17 years, 9 months ago
Hello. will someone please explain how to keep the screen from going away when using C# to write hello world?
Advertisement
Try putting a break point after the print statement. Assuming you're using Visual C#, just double click in the left margin.
I take it by "going away" you mean it exits right after outputting "hello world". Just add System.Console.ReadLine() or something similar before the return statement.
thank you scet

This topic is closed to new replies.

Advertisement