我想为不同的帐户保留一些总数,在 C + + 中我会像这样使用 STL:
map<string,double> accounts;
// Add some amounts to some accounts.
accounts["Fred"] += 4.56;
accounts["George"] += 1.00;
accounts["Fred"] += 1.00;
cout << "Fred owes me $" << accounts['Fred'] << endl;
现在,我要怎么在 C # 中做同样的事情呢?