Never return in the middle of the function.
Never return in the middle of the function.
Never return in the middle of the function.
Never return in the middle of the function.
Never return in the middle of the function.
If you don't want code behind return to be executed, rever conditions of return
Instead of
if(returnCondition) return yourValue;
/// some code
write
if(!returnCondition)
{
//// some code
}
return yourValue;
Never return in the middle of the function.
No comments:
Post a Comment