摘要: Enumerating directly over an IDictionaryreturns a sequence of KeyValuePair structs:public struct KeyValuePair { public TKey Key { get; } public TValue Value { get; }}Enumerating over a nongeneric IDictionary returns a sequence of DictionaryEntry structs:public struct DictionaryEntry{ public objec... 阅读全文
posted @ 2013-12-01 16:04 MinieGoGo 阅读(204) 评论(0) 推荐(0) 编辑