RedLeader Posted May 20, 2005 Posted May 20, 2005 I wondering is the way to know when the application is runed in Debug mode? if(debug == true) { Console.ReadLine(); } Thank you Quote
IngisKahn Posted May 20, 2005 Posted May 20, 2005 Use conditional complilition tags: #if DEBUG Console.ReadLine(); #endif Quote "Who is John Galt?"
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.