我正在尝试对具有内置Sum()
函数的浮点数列表求和,但我不断收到此错误:
错误 CS1061:“System.Collections.Generic.List”不包含“Sum”的定义,并且找不到接受“System.Collections.Generic.List”类型的第一个参数的扩展方法“Sum”(您是否缺少using 指令还是程序集引用?)(CS1061)
我有
using System.Collections;
using System.Collections.Generic;
在文件的开头:
代码 :
List<float> x = new List<float>();
x.add(5.0f);
//..
float f = x.Sum();