标签: c# .net-4.0
在.NET 4.0,C#中 default(IEnumerable<T>) 的价值是什么?(非常简单)
default(IEnumerable<T>)
答案 0 :(得分:26)
null
default Keyword:
对于引用类型为null,对于值类型为零。
IEnumerable不是值类型,因此结果为null
IEnumerable
答案 1 :(得分:4)
它为null,因为它是引用类型。