Tuesday, August 11, 2009

Focus on If true case only

In many situation, we often need to use if. Therefore, just focus on if true case only.

if (true)
{
// Do something
}

Not need bother the false case.

No comments: