问题描述
我需要用Dictionary类,引用了usingSystem.Collections.Generic;用的.net4,为什么没有Keys.ToArray()方法,请教!
解决方案
解决方案二:
usingSystem.Linq;
解决方案三:
Keys.Cast<Key的类型>().ToArray()
解决方案四:
因为它继承自:ICollection<KeyValuePair<TKey,TValue>>,IEnumerable<KeyValuePair<TKey,TValue>>接口,类型为KeyValuePair类型,为结构类型。1L的方式可以。
解决方案五:
usingSystem.Linq;
时间: 2024-11-03 06:52:49