我有 2 个实例:
foo and bar
它们的类型是:
foo.GetType().ToString()
返回: System.Collections.Generic.List`1[MyNameSpace.MyClass]
bar.GetType().ToString()
返回: System.Collections.Generic.List`1[MyNameSpace.MyClass]
当我连接它们时:
var foobar = foo.Concat(bar);
GetType() 返回 System.Linq.Enumerable+d__71`1[MyNameSpace.MyClass]
问题:这是什么意思?它不应该是 IEnumerable 吗?