Datatable での並べ替えについて質問があります。以下のようなテーブルがあり、小さいものから大きいものへと並べ替えたいと考えています。問題は、私が同じ番号を持っている場合、最初のものを最後にしたいなどです...
表: -----------------------------------ソート後:
Name Bit Size Name Bit Size (corrected)
A 0 1 A 0 1
C 1 2 C 1 2
B 1 3 B 1 3
D 1 1 D 1 1
私が望む結果:
Name Bit Size (corrected)
A 0 1
D 1 1
B 1 3
C 1 2
私のコード:
arraySBit.DefaultView.Sort = "Bit";
arraySBit = arraySBit.DefaultView.ToTable();