Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi Every one
Unfortunately ArrayName.Any not exist in .net 2
So what command is like that in .net 2
My Example is :
VB
Private ArraySides() As String = {"Out Side", "Up Down", "Top Buttom"}
 
Dim StrSide as String="This is Out Side"

If ArraySides.Any(Function(s) StrSide.Contains(s)) Then
end if


Thank you.
Posted

1 solution

No Linq methods are available prior to .NET V3.5, so you can't use them at all.
But all you have to do is recreate it yourself with a For Each loop:
VB
Dim ArraySides As String() = {"Out Side", "Up Down", "Top Buttom"}
Dim StrSide As String = "This is Out Side"
Dim isAnyOf As Boolean = False
For Each s As String In ArraySides
    If StrSide.Contains(s) Then
        isAnyOf = True
        Exit For
    End If
Next
If isAnyOf Then
    ...
End If
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900