using System.Linq; using System; class C { static object Method (object[] objects) { return objects.Select(obj => new Func(x => obj)); } public static void Main () { Method (new[] { "a", "b", "c" }); } }