我如何连接项目列表i vb.net

时间:2011-11-03 05:09:11

标签: vb.net join concatenation

我有一个多选下拉框。

我希望所有选中的项目都在逗号分隔值的字符串中。

目前我的做法如下:

        Dim SelUINS As String = ""

        For Each Item As SalesCustomer In RetailerMainListBox.SelectedItems
            SelUINS += Item.Uin & ","
        Next
        SelUINS = Strings.Left(SelUINS, SelUINS.Length - 1)

我想要一个像join这样的快捷方式来完成任务。

1 个答案:

答案 0 :(得分:2)

这可能会有所帮助:

Dim names As String = String.Join(", ", RetailerMainListBox.Items.Cast(Of Object)().Select(Function(i) i.Uin.ToString()))

取自here