我正在使用 Excel 2010,我想知道为什么下面的代码对我不起作用?我有compile error: syntax error
。
Sub test()
Dim myStudents(,) As String = _
{{"Dick", "Jane", "Tom", "Sam"}, _
{"Sue", "Bill", "Mary", ""}}
End Sub
示例链接和代码:
Sub xyz()
Dim xyz()()() As Byte
End Sub
这也是compile error: syntax error
运行时产生的。