如何在单独的行中声明列表

时间:2019-02-18 12:00:50

标签: vb.net

我想分两行遵循代码。

Dim myList As New List(Of Integer)(New Integer() {30, 31, 32, 33, 34, 35})

我尝试了以下代码,但没有用。

您能修复以下代码吗?

    Dim myList As New List(Of Integer)
    MessageBox.Show("Hello")
    myList = (New Integer() {30, 31, 32, 33, 34, 35})

那么,如何在单独的行中声明列表?

1 个答案:

答案 0 :(得分:3)

使用此

Dim myList As New List(Of Integer)
myList.AddRange({30, 31, 32, 33, 34 , 35})

Dim myList As List(Of Integer)
MessageBox.Show("Hello") 
myList = New List(Of Integer) From {30, 31, 32, 33, 34, 35}