using System; using System.Linq; using System.Collections.Generic; class X { public static void Execute(TArg args) { Action a = () => { List s = new List () { "test" }; object res = null; var res2 = s.Select(acrl => acrl.Select(acr => res)).ToArray (); }; a (); } public static void Main () { Execute (null); } }