A
Ayoa
I am trying to identify items that are common to 2 or more arraylists
e.g.
a = {2,4,6,8}
b = {4,5, 6,7,8}
C = {0,4,8,16}
I would like to return the common items in a new arraylist i.e. {4,8}.
(Similar to a set intersection operation). Can i achieve this using c#?
thanks
e.g.
a = {2,4,6,8}
b = {4,5, 6,7,8}
C = {0,4,8,16}
I would like to return the common items in a new arraylist i.e. {4,8}.
(Similar to a set intersection operation). Can i achieve this using c#?
thanks