I have something like this
bool a = true; bool b = true; bool plot = true; if(plot) { if(a) { if(b) b = false; else b = true;
I want to break out of the if statement, which checks a when b becomes false. A view is like break and continues in cycles. Any ideas? Edit: sorry forgot to include the big if statement. I want to exit if (a) when b is false, but not break out of if (plot).
Chris source share