16 lines
230 B
C#
16 lines
230 B
C#
|
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" } };
|
||
|
});
|
||
|
}
|
||
|
}
|