我是vb net的新手,如何返回值列表(字符串)?
例如:
Dim newlist As New List(Of String)
newlist.add("1")
newlist.add("2")
newlist.add("3")
#so I want to return all value from list
Console.WriteLine(newlist)
#output is System.Collections bla bla bla
我希望是值得回报的 {“1”,“2”,“3”}或(“1”,“2”,“3”)不是System.Collections bla bla bla
我希望你们明白我的意思,我的英语很抱歉
答案 0 :(得分:1)
你可以使用字符串连接
代表{'1','2','3'}
Dim result = "{'" & String.Join("','", newlist.ToArray()) & "'}"
表示{“1”,“2”,“3”}
Dim result = "{""" & String.Join(""",""", newlist.ToArray()) & """}"