If I have the arrays:
var list1 = new int[] { 1,2,3,4,5};
var list2 = new int[] { 1,2,3};
var list3 = new int[] { 2,3};
what method can help me keep only value found on all the lists. In this example I will like to end up with {2,3}
because those two values are found on all the lists.