>FromYourCode();

All the sources codes "But why ?"page 27

C#
 July 22, 2014 am31 10:23
#170
if (hyperLink.Enabled != false)
{
	hyperLink.Enabled = false;
}
C++
 July 21, 2014 am31 06:57
#155
loop: a++;
        ......
        if(a<10){
          goto loop;
        }else{
          goto endloop;
        }
endloop: .....
C++
 July 20, 2014 am31 07:25
#183
public bool IsTrue(bool b)
{
        if (b == true)
        {
                return true;
        }
        return false;
}