linux-packaging-mono/mcs/tests/test-anon-74.cs

16 lines
230 B
C#
Raw Normal View History

static class Foo
{
delegate string[,] SimpleDelegate();
static void Baz(SimpleDelegate sd)
{
sd();
}
public static void Main(string[] args)
{
Baz(delegate() {
return new string[,] { { "aa" } , { "bb" } };
});
}
}