存档

文章标签 ‘KeyValuePair’

c#中KeyValuePair的用法

2009年11月13日 云飞扬 没有评论

KeyValuePair可以这样实例化
KeyValuePair mcmillan = new KeyValuePair("McMillan", 99);
取值
Console.Write(mcmillan.Key);
Console.Write(" " + mcmillan.Value);

分类: c# 标签: ,