2 // This test is used to verify that we handle functions that have
3 // only an array parameter
11 static string strcat (params string [] values
)
13 StringBuilder s
= new StringBuilder ();
15 foreach (string val
in values
) {
22 public static int Main ()
24 if (strcat ("Hello", "World") != "HelloWorld")
30 if (strcat ("a", "b", "c", "d", "e") != "abcde")