这应该根据另一个堆栈溢出帖子工作,但它不是:
Dim arrWsNames As String() = {"Value1", "Value2"}
谁能让我知道哪里出了问题?
发布于 2013-10-15 04:57:26
试试这个:
Dim myarray As Variant myarray = Array("Cat", "Dog", "Rabbit")
发布于 2014-12-03 18:01:00
在字符串数组的特定情况下,您可以使用 Split Function 初始化该数组,因为它返回字符串数组而不是变量数组:
Dim arrWsNames() As String