たとえば、C#のオブジェクトの一般的なリストがあります。オブジェクトは次のとおりです。
public class Thing {
public string Name { get; set; }
public DateTime EditDate { get; set; }
}
var things = new List<Thing>();
今私は電話したい:
thing.Sort((t1, t2) => t1.EditDate.CompareTo(t2.EditDate));
ただし、私の EditDate プロパティの一部は null です。null の EditDate プロパティを持つこれらのオブジェクトをリストの一番上 (つまり、ゼロ インデックスの近く) に表示したいと考えています。これどうやってするの?