列表_obj = new List(){“ 10”,“ 20”,“ 30”,“ d”,“ a”,“ t”};
输出 数字之和= 60并置字符串=“ dat”
答案 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;
}