Layout Conventions

colenz

Banned
Joined
Dec 9, 2012
Messages
4
layout convention in c# ::


if ((val1 > val2) && (val1 > val3))
{
// Take appropriate action.
}
 

CyberKID

In search for Tech Gyan!
Joined
Jul 30, 2010
Messages
995
^ +1.
@OP: Please be specific with your question if you want an answer.
 

surinarayan

Broken In
Joined
Dec 14, 2012
Messages
29
If you use one (&) symbol then it should satisfy both the condition ,like wise if it is (&&) symbol either one should be satisfied.
 
Top