我有具有字符串的对象列表,我想连接字符串数据并求和int数

时间:2019-12-20 13:45:20

标签: c#-4.0

列表_obj = new List(){“ 10”,“ 20”,“ 30”,“ d”,“ a”,“ t”};

输出 数字之和= 60并置字符串=“ dat”

1 个答案:

答案 0 :(得分:0)

没有小例子可以理解将对象解析为int类型参数的情况。

List<object> _obj = new List<object>() { "10", "20", "30", "d", "a", "t" };

int sum = 0;

for (int i = 0; i < _obj.Count; i++)
{
    int temp;

    //parsing object into int type, when we cant parse object will be 0
    int.TryParse(_obj[i].ToString(), out temp);

    //sum values
    sum = sum + temp;
}