默认值(IEnumerable) 的值是多少?
在 .NET 4.0、C# 中,default(IEnumerable
What is the value of default(IEnumerable<T>)
in .NET 4.0, C# ? (Pretty much straightforward)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认关键字:
IEnumerable
不是值类型,因此结果将为null
default Keyword:
IEnumerable
is not value type, so result will benull
它为 null,因为它是引用类型。
It is null because it is a reference type.