2008/07/16(Wed) 10:11:47 編集(投稿者)
おまけ。
using System;
using System.Collections.Generic;
public class Program {
public static void Main() {
List<int> col = new List<int>(new int[]{ 1, 2, 3, 4, 5, 9, 8, 7, 6, 0 });
col.Sort(); // 昇順
foreach ( int item in col ) Console.Write("{0} ", item);
Console.WriteLine();
col.Sort(delegate (int x, int y) { return y.CompareTo(x);}); // 降順 (匿名delegate)
// col.Sort((x, y) => y.CompareTo(x)); // 降順 (C#3.5 lambda式)
col.ForEach(item => Console.Write("{0} ", item)); // こんなのもアリ
Console.WriteLine();
}
}