I have an application which recent release I found it runs in debug mode in some part of the code, but release mode in the others.
There are various part in the application which does this:
#if debug
#else
#endif
And what I have found is, some part, it runs the code in the debug condition, whereas most others in the else condition. I have made sure the release is under RELEASE mode. Does anyone know why?
Go to the complete details ...