在 C# 中的数组上使用 Contains() 扩展方法
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 中也是同样的想法,使用 LINQ 扩展方法:
It is the same idea in C#, using LINQ extension methods: