本帖最后由 shdow2689 于 2013-1-28 20:41 编辑
if (strInput == ' ')
{ }
else if (hashtable.ContainsKey(strInput))
{
int newValue = (int)hashtable[strInput];
newValue++;
hashtable[strInput] = newValue;
}
else
{
hashtable.Add(strInput, 1);
}
为什么不能这样用:((int)hashtable[strInput])++; |