我想分两行遵循代码。
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})
那么,如何在单独的行中声明列表?
答案 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}