List<int[]> result1 = new List<int[]> { new int[]{1,2,3} ,new int[]{7,8,9} };
Now, How do I compare result with result1 and exclude the value which are common between result and result1 from result
So, the result list should have only {{4,5,6} .