这是我的尝试
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'
有任何线索吗?谢谢!
答案 0 :(得分:4)
尝试dic.Values.OrderBy(i=>i.CreatedDateTime)