Visual Basic .NET声明一维数组并设置数组元素值

示例

Dim array = New Integer() {1, 2, 3, 4}

要么

Dim array As Int32() = {1, 2, 3, 4}