gpt4 book ai didi

vb.net - 将通用列表转换为字符串数组

转载 作者:行者123 更新时间:2023-12-04 17:57:40 24 4
gpt4 key购买 nike

我有一个通用列表(客户)。客户类具有姓名、地​​址和电话号码属性。我还有另一个类的属性,它接受客户名称数组。我可以通过执行以下操作来做到这一点:


Dim names As String()
Dim i As Integer = 0
'customer.GetCustomers is a List(of Customer)
For Each customer As Customer In customer.GetCustomers()
ReDim Preserve names(i)
names(i) = customer.Name
i += 1
Next

然后设置它:

'CustomerNames is a String()
Class.CustomerNames = names

有没有更好的方法将其转换为字符串数组?任何帮助表示赞赏。谢谢。

最佳答案

您可以使用 LINQ(请原谅我的 VB,我更喜欢 C#)

Dim queryResults = From cust In customer.GetCustomers() Select cust.Name
Class.CustomerNames = queryResults.ToArray()

关于vb.net - 将通用列表转换为字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5238828/

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