这可能是一个简单的问题,但我如何访问特定行中字典键的值。假设Dict
是{ 1,13; 3,14; 5,17 }
第二个键是3
。
我如何获得该值?我试过Dict->Key[2]
了,但出错了,找不到对它的引用
更新:这给了我我需要的东西,但也许有更快的方法。
Dictionary<double, double>::KeyCollection^ keyColl = Dict->Keys;
double first;
double last;
int counter=0;
int dictionaryCount = Dict->Count;
for each( double s in keyColl )
{
if(counter==0){
first=s;
}
if(dictionaryCount == counter+1){
last=s;
}
//Dict[first] would be the first key
//Dict[last] would be the last key