gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 19:35:28 25 4
gpt4 key购买 nike

我有:

Public lsAuthors As List(Of String)

我想向此列表添加值,但在添加之前我需要检查确切的值是否已在其中。我该如何解决这个问题?

最佳答案

您可以使用List.Contains :

If Not lsAuthors.Contains(newAuthor) Then
lsAuthors.Add(newAuthor)
End If

或使用 LINQ 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)

关于.net - 检查字符串列表是否包含值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26732563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com