标题相当混乱。我将尝试用一个例子来解释。考虑下面的代码:
String[] str={"Apple","Banana","Cherry","Orange"};
var anoCollection=from e in str select new
{
ch=e[0],
length=e.Length
}
dataGridView.DataSource=anoCollection.ToList(); //TypeInitializationException
我觉得我需要在上面的案例中提到该ToList<T>()
方法的类型。但是我怎么能在这里提到匿名类型呢?