// CS1061: Type `T' does not contain a definition for `Name' and no extension method `Name' of type `T' could be found. Are you missing an assembly reference? // Line: 11 using System; using System.Collections.Generic; public class C { public C (IEnumerable t) { new List(t).ConvertAll(p => p.Name); } }