如何獲得每個列表中所有int的總和?在字典中獲取int值的總和<string,列表<int>>()
代碼:
var teamScoreDict = new Dictionary<string, List<int>>()
示例數據:
teamScoreDict.Add("Blue", new List<int>(){34,53,57,22,68,78,12,28});
teamScoreDict.Add("Red", new List<int>(){64,66,22,73,25,45,36,21});
您是否首先進行了自己的研究? – zerkms
預期輸出? – EZI