在 C# 中的数组上使用 Contains() 扩展方法

发布于 2024-08-16 02:59:34 字数 164 浏览 9 评论 0原文

IEnumerable 上有一个 Contains() 扩展方法;在 VB 中我可以这样做:

If New String() {"A", "B"}.Contains("B") Then
    ' ...
End If

在 C# 中这相当于什么?

There is a Contains() extension method on IEnumerable; In VB I am able to do this:

If New String() {"A", "B"}.Contains("B") Then
    ' ...
End If

What would be the equivalent of this in C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿嘿嘿 2024-08-23 02:59:35

C# 中也是同样的想法,使用 LINQ 扩展方法:

using System.Linq;
...

if (new string[] {"A", "B"}.Contains("B")) {
    ...
}

It is the same idea in C#, using LINQ extension methods:

using System.Linq;
...

if (new string[] {"A", "B"}.Contains("B")) {
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文