J
Miha Markic said:I wouldn't create such constructs at all - totally unreadable (even this is
only a sample).
--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com
Josh said:int a = 1;
int b = 2;
int c = 3;
int d = 4;
int e = 5;
int f = 5;
int g = 5;
int r;
r = (a<b) ? (c<d) ? e : f : g;
It returns 5