C# 创建整数和数组字典

如何创建包含整数作为键和数组作为值的字典。这是我在 dotnetfiddle.net 上尝试过的,但没有成功:


Dictionary<int, double[]> dict;

double[] prices = new double[20];

dict = new Dictionary<int, prices>();


Dictionary<int, double[]> dict;

dict = new Dictionary<int, new double[20]>();


Dictionary<int, double[]> dict;

dict = new Dictionary<int, double[20]>();


慕的地6264312
浏览 74回答 1
1回答

喵喔喔

你可以试试这个。Dictionary<TKey,TValue>是一种通用类型,您只能在其上设置合同类型。我认为您正在寻找Add添加double数组的方法。Dictionary<int, double[]>&nbsp; dict = new Dictionary<int, double[]>();dict.Add(1,new double[20]);
打开App,查看更多内容
随时随地看视频慕课网APP