Why does the debugger stop/break at code within 'if' statements when conditions are not met.?
Hopefully i am doing something strange or incorrectly but would appreciate any help. For example
every time i run in debug mode the debugger breaks within statements that aren't met such
as
if (x==5)
{
y++; //with a breakpoint here
}
the compiler/debugger stops everytime even tho x != 5