我对 C# 不太了解,但我有一个我正在从事的项目,我想做这样的事情:
SortedDictionary<int, List<ChessMove>> possibleMovesByRank = new SortedDictionary<int, List<ChessMove>>();
...
var best = possibleMovesByRank.Keys.Last();
据我所知,这应该使用 linq 返回具有最高值的键,但是 VS 给了我一个错误:
SortedDictionary.KeyCollection does not contain a definition for 'Last' and no extension method for 'Last'
我错过了什么或者我的项目设置不正确还是什么?