V
VMI
I'm having doubts as to how the compiler interprets this If statement:
bool bIsTrue = true;
if (! bIsTrue)
{
//RUN PROCESS
}
Here, will "RUN PROCESS" be executed? Or is this just wrong? How is this
really interpreted by the compiler?
Thanks.
bool bIsTrue = true;
if (! bIsTrue)
{
//RUN PROCESS
}
Here, will "RUN PROCESS" be executed? Or is this just wrong? How is this
really interpreted by the compiler?
Thanks.