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

gtest-184.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8068e346e23ec15a225640e47c99c0a95b10fae0 (plain)
1
2
3
4
5
6
7
8
class X {
      public static void Main ()
      {
	string [] s = { "a", "b", "a" };
	System.Array.FindAll (s, delegate (string str) { return str == "a"; });
      }
}