.net – 检查字符串列表是否包含值

前端之家收集整理的这篇文章主要介绍了.net – 检查字符串列表是否包含值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有:
Public lsAuthors As List(Of String)

我想在此列表中添加值,但在添加之前我需要检查确切的值是否已经在其中.我怎么知道这个?

你可以使用 List.Contains
If Not lsAuthors.Contains(newAuthor) Then
    lsAuthors.Add(newAuthor)
End If

或者使用LINQs Enumerable.Any:

Dim authors = From author In lsAuthors Where author = newAuthor
If Not authors.Any() Then
    lsAuthors.Add(newAuthor)
End If

您还可以使用高效的HashSet(Of String)而不是不允许重复的列表,如果字符串已经在集合中,则在HashSet.Add中返回False.

Dim isNew As Boolean = lsAuthors.Add(newAuthor)  ' presuming lsAuthors is a HashSet(Of String)
原文链接:https://www.f2er.com/vb/255786.html

猜你在找的VB相关文章