これが私の試みです
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'
どんな手掛かり?ありがとう!!