I am looking for a quick way to identify the part inside a complicated if condition will cause the whole condition to return false.
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.
Try the dis-assembly view. In Visual Studio: Debug -> Windows -> Disassembly.
Run step by step, and try to understand what the processor does.
Also, if you ‘if’ statement doesn’t have function call, you can evaluate (in the expression evaluation window) each part of your ‘if’ statement