suppose i have a code like this,
(var1==true && var2==true)
{
somemethod();
}
suppose we have a language in which we do not have && operator it is not exsis in the language then what changing in the condition to make it like (var1==true || var2==true) and work like and operator that when both condion true then it enter in the loop and do not use any code like using if condition for both condition to make it work hopes for your suggestions thanks in advance

!operator or not – V4Vendetta Mar 27 '12 at 7:13