gpt4 book ai didi

c# - 如何将 Sum() 等 linq 函数与动态变量一起使用

转载 作者:行者123 更新时间:2023-12-03 05:10:26 25 4
gpt4 key购买 nike

Type t = Type.GetType(obj.ToString());                 
PropertyInfo p = t.GetProperty("Test");
dynamic kk = p.GetValue(obj, null);

在此,Test 是一个 int 列表。我需要从 int 列表中获取所有值的总和,即 kk。

最佳答案

var list = p.GetValue(obj, null) as IEnumerable<int>;

var result = list.Sum();

关于c# - 如何将 Sum() 等 linq 函数与动态变量一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5907667/

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