9 lines
169 B
C#
Raw Normal View History

class X {
public static void Main ()
{
string [] s = { "a", "b", "a" };
System.Array.FindAll (s, delegate (string str) { return str == "a"; });
}
}