Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-207.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3848d9542a90911e24b00a041045ac8133069eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Note that this test actually checks if we compiled mscorlib.dll properly.

class M {
  static void p (string x) {
    System.Console.WriteLine (x);
  }

  public static void Main () {
    string[] arr = new string[] { "a", "b", "c" };
    System.Array.ForEach (arr, p);
  }
}