2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1061-6.cs
bloba09c0faf660d886c90e088ef9ba9bce558fc22bd
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);