What do you mean? Are you just working with a console application? If so try putting Console.ReadKey() at the end of your Main method and try again. What happens is that it pops up, runs all your code, runs out of code, and closes the window. ReadKey makes it wait for you to press a button to continue, which will keep the window open.
|