在VB.Net中创建时将列表添加到列表中

前端之家收集整理的这篇文章主要介绍了在VB.Net中创建时将列表添加到列表中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在c#中,我可以在创建时初始化一个列表
var list = new List<String>() {"string1","string2"};

VB.Net中有类似的东西吗?
目前我可以这样做

Dim list As New List(Of String)
list.Add("string1")
list.Add("string2")
list.Add("string3")

但我想避免无聊.添加

我相信你的例子是:
Dim list As New List(Of String) From { "string1","string2","string3" }

MSDN has more information.

原文链接:https://www.f2er.com/vb/255186.html

猜你在找的VB相关文章