I’d like the line to execute when running within Visual Studio but not when the exe is running stand alone.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you mean when a debugger is attached? If so, you could do something like this:
This will only run when the debugger is attached, such as running with F5. Double clicking it or using Ctrl+F5 won’t cause the
ifstatement to be hit. It’s also wrapped in a conditional so then when you compile to release the code is not even there.