这是我的尝试
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'
有什么线索吗?谢谢!!