我有一个字符串列表.对于该列表中的每个字符串,我想要添加另一个字符串.我写了一个方法来做到这一点,但我想知道是否已经有一些东西在.NET中我可以用它来做到这一点.它似乎可以内
这是我写的方法:
Private Function PrependToAllInList(ByRef inputList As List(Of String), ByRef prependString As String) As List(Of String) Dim returnList As List(Of String) = New List(Of String) For Each inputString As String In inputList returnList.Add(String.Format("{0}{1}", prependString, inputString)) Next Return returnList End Function
它有效,但我宁愿尽可能使用内置函数.谢谢你的帮助.
如果您可以使用LINQ(.NET 3.5或更高版本),则可以使用简单的LINQ查询为您完成工作:Dim qry = stringList.Select(Function(s) "prepend this " & s) Dim returnList = qry.ToList()
默认情况下,Select()将返回一个IEnumerable(Of String),它应该可以工作.如果您确实需要将集合作为列表,则可以包含.ToList()命令.但是,如果您只计划迭代集合(例如,对于qry中的每个字符串),则无需承担将其转换回列表的费用.