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#?
It is the same idea in C#, using LINQ extension methods:
using System.Linq;
...
if (new string[] {"A", "B"}.Contains("B")) {
...
}
精彩评论