gpt4 book ai didi

.net - 在 vb.net 4.0 中对字典的整数值字段求和

转载 作者:行者123 更新时间:2023-12-02 06:06:35 25 4
gpt4 key购买 nike

在 .net 4.0 字典中,我知道我可以像这样计算所有整数值字段的总和:

 Dim dbar As Dictionary(Of String, Integer) = New Dictionary(Of String, Integer)() From {{"A", 1}, {"B", 1}, {"C", 1}}
Dim sum As Integer = 0
For Each v As Integer In dbar.Values
sum += v
Next

是否存在更优雅的方法来计算总和?

最佳答案

只需使用 Sum()方法:

dbar.Values.Sum()

关于.net - 在 vb.net 4.0 中对字典的整数值字段求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8757825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com