List<int> ls1 = new List<int>() { 1,2 };
List<int> ls2 = new List<int>() { 1,2,3 };
List<int> ls3 = new List<int>() { 1,2,3,4,5 };
List<int> ls4 = new List<int>() { 1,2,3,4 };
List<List<int>> listeler = new List<List<int>>() { ls1, ls2, ls3, ls4 };
var enFazlaElemanli = listeler.OrderByDescending(x => x.Count).First();