Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs1061-6.cs
blobb5c3b3c9b02ac1b9fd8b7981b04272522409609e
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
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);