0
How do I end mid program?
if (X==y) make the program stop is there a way to do that (excuse my language English isn't my first language)
4 Answers
+ 9
You can use :
Environment.Exit(0)
OR
Environment.FailFast(string)
For Environment.FailFast, you can place a message inside the bracket there to display something on the console before it ends the system.
+ 3
You can use Environment.Exit(0);
0
i havent understand you question .. can you explain it more?
0
thanks