Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-328.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class App
5 {
6         class MyClass
7         { }
8   
9         public static void Main ()
10         {
11                 MyClass mc = new MyClass ();
12                 List<string> l = new List<string> ();
13                 TestMethod ("Some format {0}", l, mc);
14         }
15
16         static void TestMethod (string format, List<string> l, params MyClass[] parms)
17         {
18                 Console.WriteLine (String.Format (format, parms));
19         }
20 }