以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [原创]怎样把一个字符串数组快速转成一个集合  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=57445)

--  作者:qq416743279
--  发布时间:2014/9/25 8:22:00
--  [原创]怎样把一个字符串数组快速转成一个集合
如题,怎样把一个字符串数组快速转成一个集合?
--  作者:Bin
--  发布时间:2014/9/25 8:29:00
--  
Dim strs As String() = {"1","2"}
Dim slist As new List(of String)(strs)
MessageBox.show(slist(0))