gpt4 book ai didi

vb.net - List(Of MyClass) 的内联初始化

转载 作者:行者123 更新时间:2023-12-01 22:58:58 27 4
gpt4 key购买 nike

Here有人问了有关在 vb.net 中内联初始化字符串列表的问题。我有一个在 VS 2013 中创建的类的列表(它只包含 2 个属性,ID 为整数,名称为字符串)。有没有办法将其内联初始化为某些默认值?

我试过了

Dim _products As New List(Of Product) From {{ID = 1, Name = "Product 1"}}

但运气不佳...

最佳答案

你就快到了。您创建了列表 (New List(Of Product)),但您还需要创建对象本身 (New Product):

Dim _products As New List(Of Product) From {
New Product With {.ID = 1, .Name = "Product 1"},
New Product With {.ID = 2, .Name = "Product 2"},
...
}

关于vb.net - List(Of MyClass) 的内联初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31061393/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com