14
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Action<int> printActionDel = delegate(int i)
8
{
9
Console.WriteLine(i);
10
};
11
12
printActionDel(10);
13
}
14
}
Cached Result
Compilation error (line 10, col 26): 'System.Array' does not contain a definition for 'length' and no extension method 'length' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)