以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何向二维数组赋值?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=144705)

--  作者:lur320
--  发布时间:2019/12/27 14:51:00
--  如何向二维数组赋值?
tempalllist=DataTables("featurePool").GetValues("日期|地点|人员")

后面如何在tempalllist里面添加其他数组集合?

例如如何新增加一个:
ary(0)=2019-12-12
ary(1)=china
ary(2)=“张三”


--  作者:有点蓝
--  发布时间:2019/12/27 15:06:00
--  
dim str() as string = {"2019-12-12","china","张三"}
tempalllist.add(str)

--  作者:lur320
--  发布时间:2019/12/27 15:09:00
--  
谢了