Sorting with OrderBy, ThenBy
问题 I'm trying to sort several columns of a table depending of the previous sorted column. It works fine for the first two columns. But as soon as I sort the third column the second one loses its sort. As far as I know for now there must be a problem with my foreach loop. Here is my code for sorting: public List<object> inhaltSortieren(List<object> zuSortierendeListe, Dictionary<string, SortierRichtung> sortierung) { IOrderedEnumerable<object> sortierteListe = null; if (sortierung.First().Value =