I have a list of all integer array in which i want to check whether the list has same value i.e -1.
for ex.
int[] intk= {-1,-1,-1,-1,-1,-1};
int[] intl = { -1, -1, -1, -1, -1, -1 };
List<int[]> lst = new List<int[]>();
lst.Add(intk);
lst.Add(intl);
how to find lst has only -1 only.