Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

and in c#

/* && would work only if both is true for example */ bool a = 1==2 && 1=< 2; // would be false 
/* but if they are both true it would be true */ bool a = 1==1 && 1==1; // would be true
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
9+6 =