DataRow[] drTest 包含System.Data.DataRow
,比如说,包含 10 个DataRow
。在每个 DataRow 内部,我都有一个 ItemArray,其中包含Name
和Count
。现在我想根据 ItemArray 第二条记录数按降序对 DataRow[] drTest 进行排序。
例子:
DataRow[] drTest contains
At [0] Index - ItemArray[0] - "A"
- ItemArray[1] - 5
At [1] Index - ItemArray[0] - "B"
- ItemArray[1] - 7
我想按降序排列 drTest,这样 drTest[1] 就会出现。