How can i test that the code executes in debug mode.
Here is what i would like to do in pseudocode
if not debugMode then
Do something()
end if
|
|
|
|
|
|
|
You can use Debugger.IsAttached to determine whether the program is being debugged.
EDIT If you always want to skip the
|
|||
|
|
|
|
you can use IsDebuggerPresent Function
|
||
|
|
|
|
What do you mean with debug mode? If you refer to a debug build, you can use
|
||
|
|