2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1061-6.cs
blob2a04f8da6fb1442739cb06a957fd9f2cc0d4a8e6
1 // CS1061: Type `T' does not contain a definition for `Name' and no extension method `Name' of type `T' could be found (are you missing a using directive or an assembly reference?)
2 // Line: 11
4 using System;
5 using System.Collections.Generic;
7 public class C<T, U>
9 public C (IEnumerable<T> t)
11 new List<T>(t).ConvertAll(p => p.Name);