[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1061-6.cs
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 an assembly reference?
2 // Line: 11
3
4 using System;
5 using System.Collections.Generic;
6
7 public class C<T, U>
8 {
9         public C (IEnumerable<T> t)
10         {
11                 new List<T>(t).ConvertAll(p => p.Name);
12         }
13 }