2 * Tests the ?: operator and the string concatenation
7 public static int Main (string [] args
)
24 y
= c
== d
? "equal" : "not-equal";
27 y
= b
== a
? "oops" : "nice";
31 string [] blah
= { "A"+'B'+"C" }
;
32 if (blah
[0] != "ABC")
35 Console
.WriteLine (c
);
39 static string s (string a
, int o
)
43 static string x (string s
, object o
)