VB.NET - 单个字符串列表

时间:2017-08-14 04:43:12

标签: string vb.net list

我有以下代码:

Program.RaygunClient.SendInBackground( ex, New List(Of String)() From {"tag"} )

在VB.NET中有更简洁的方法吗?例如,这看起来更短,更具描述性:

Program.RaygunClient.SendInBackground( ex, "tag".ToList() )

但(显然)不起作用。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

事实证明,编译器很满意:

Program.RaygunClient.SendInBackground(ex, {"caught"})