A 2 dimensional list sort
[ Test ] public void List2DSortTest() { var table = new List<List<string>> { new List<string> { "1", "Mbukuravi", "2", "Wnuk-Lipinski Settlement", "M2M" }, new List<string> { "2", "Liaedin", "Ulrich's Rock", "Valigursky Landing", "L1M" }, new List<string> { "3", "Miao Thixo", "2 A", "Sekelj Laboratory", "M3M" }, }; var newTable = table.OrderBy( list => list[ 1 ] ).ToList(); Assert.That( newTable[ 0 ][ 1 ] == "Liaedin" ); Assert.That( newTable[ 1 ][ 1 ] == "Mbukuravi" ); Assert.That( newTable[ 2 ][ 1 ] == "Miao Thixo" ); var newTable2 = table.OrderByDescending( list => list[ 1 ] ).ToList(); Assert.That( newTable2[ 2 ][ 1 ] == "Liaedin" ); Assert.That( newTable2[ 1 ][ 1 ] == "Mbukuravi" ); Assert.That( newTable2[ 0 ][ 1 ] == "Miao Thixo" ); var newTable3 = table.OrderBy( list => list[ 2 ] ).ToList(); var newTable4 = table.OrderByDescending( list => list[ 2 ] ).ToList(); }
No comments:
Post a Comment