-8

これが私の試みです

public MyClass
{
   public Guid ID {set; get;}
   public DateTime CreatedDateTime {set; get;}
}


ConcurrentDictionary<Guid, MyClass> dic = new ConcurrentDictionary<Guid,MyClass>();

やってみるけど、ちょっと面倒…。

dic.OrderBy(i=>i.Value.CreatedDateTime);

次のようなエラーが発生しました

Cannot implicitly convert type 'System.Linq.IOrderedEnumerable'

どんな手掛かり?ありがとう!!

4

1 に答える 1

4

試すdic.Values.OrderBy(i=>i.CreatedDateTime)

于 2012-05-09T19:54:11.473 に答える