好的,
这是我的问题....我有一个List<short>letterList
例如:“1,2,3,4,5,6,7,8,9,10”
我正在做的是遍历这个列表,然后将值传递给另一个返回值的方法:
所以:
string value = null;
for(Short foo : letterList)
{
value = getSomeValue(foo) //returns a letter A or B or C
}
我想做的是让哈希图看起来像这样:
key: a, value 1,5,7
key b, value: 2,3,4
key c, value: 6,8,9,10
不是这些价值观,但你明白我的意思
我不知道该怎么做我试过用<set<string>, List<short>
任何建议,将不胜感激