IEnumerable数据类型:如何创建空对象?

发布于 2024-10-01 21:03:34 字数 390 浏览 2 评论 0原文

我有一个包含多个 IEnumerable 集合的对象:

public class Product
{
    public int id {get;set;}
    public string name {get;set;}
    IEnumerable<CrossSell> CrossSells {get;set;}
    IEnumerable<UpSell> UpSells {get;set;}
    IEnumerable<PricePromos> PricePromos {get;set;}
}

我需要创建一个空对象(所有属性均为空但不为空)。 显然,我不能只创建一个可枚举项。

除了创建一个全新的类之外,我还能怎么做呢?

I have an object with several IEnumerable collections:

public class Product
{
    public int id {get;set;}
    public string name {get;set;}
    IEnumerable<CrossSell> CrossSells {get;set;}
    IEnumerable<UpSell> UpSells {get;set;}
    IEnumerable<PricePromos> PricePromos {get;set;}
}

I need to create a null object (all properties are blank but not null).
Apparently, I cannot just create an Enumerable item.

Other than creating an entirely new class, how could I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别把无礼当个性 2024-10-08 21:03:34

Enumerable.Empty()或者只是一个新的零长度数组。

Enumerable.Empty<T>() or just a new, zero-length array.

冷…雨湿花 2024-10-08 21:03:34

正如 cdhowie 所建议的,零元素数组也可以工作。语法为new T[0]

As cdhowie suggests, a zero-element array will work just as well. The syntax is new T[0].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文