Trying to find the best way to find common entries in an x number of
ArrayLists or arrays of integers. Curious if there is a method already
available in .NET to do just this very thing.
Situation is that each array contains search results for a given criteria,
but the end result should only give the search results that are common to
all arrays of results.
i.e.,
SearchArrayOne[0] = 100
SearchArrayOne[1] = 101
SearchArrayOne[2] = 102
SearchArrayOne[3] = 103
SearchArrayTwo[0] = 102
SearchArrayTwo[1] = 103
End Results:
ResultsArray[0] = 102
ResultsArray[1] = 103
Brandon |