Hello anybody I have a mathematical collection in my project as ienumarable type which is the intersection of two lists of integer and I want to look for an element into it, if it is included in that collection, or not, but contains method doesn't provided. Any ideas please, because I am not very familiar with collections? Thank you so much in advanced.
Here is my Collection
Dim GatePositionsResult As IEnumerable
GatePositionsResult = OccuppiedPositionsLst.Except(PcLoneliesAtImminentThreatLst)
Num = 30
How can I look with an if statement if GatesPositionsResult includes num.
Any help will be much appreciated.
Here is my Collection
Dim GatePositionsResult As IEnumerable
GatePositionsResult = OccuppiedPositionsLst.Except(PcLoneliesAtImminentThreatLst)
Num = 30
How can I look with an if statement if GatesPositionsResult includes num.
Any help will be much appreciated.