Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于 2 个字符串s和列表t,我想让 s 的成员不在 t 中。在每个列表中,没有重复项。
s
t
在 Python 中,我会使用s.difference(t)
s.difference(t)
是否有类似简洁的 .NET 方法?我想避免使用循环。
您可以使用Enumerable.Except.
Enumerable.Except
Dim difference = s.Except(t)