add bug info
[mcs.git] / tests / gtest-328.cs
blobb4dc3287c311f2b2e524e3033fa0117f1b762a08
1 using System;
2 using System.Collections.Generic;
4 public class App
6 class MyClass
7 { }
9 public static void Main ()
11 MyClass mc = new MyClass ();
12 List<string> l = new List<string> ();
13 TestMethod ("Some format {0}", l, mc);
16 static void TestMethod (string format, List<string> l, params MyClass[] parms)
18 Console.WriteLine (String.Format (format, parms));