blob: b5c3b3c9b02ac1b9fd8b7981b04272522409609e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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<T, U>
{
public C (IEnumerable<T> t)
{
new List<T>(t).ConvertAll(p => p.Name);
}
}
|