How do I make my console application not exit?
I have a timer w/elapsed event, but the event never calls because the code finishes and closes...
I forgot what I'm doing lol.
Printable View
How do I make my console application not exit?
I have a timer w/elapsed event, but the event never calls because the code finishes and closes...
I forgot what I'm doing lol.
Would...
...work?Quote:
bool runState;
runState = 1;
While (runState)
{
//zip!
}
That should keep the program alive right?