Vector.Sum<T>(Vector<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定向量内所有元素的总和。
public:
generic <typename T>
where T : value class static T Sum(System::Numerics::Vector<T> value);
public:
generic <typename T>
static T Sum(System::Numerics::Vector<T> value);
public static T Sum<T> (System.Numerics.Vector<T> value) where T : struct;
public static T Sum<T> (System.Numerics.Vector<T> value);
static member Sum : System.Numerics.Vector<'T (requires 'T : struct)> -> 'T (requires 'T : struct)
static member Sum : System.Numerics.Vector<'T> -> 'T
Public Function Sum(Of T As Structure) (value As Vector(Of T)) As T
Public Function Sum(Of T) (value As Vector(Of T)) As T
类型参数
- T
要求和的元素的类型。
参数
- value
- Vector<T>
包含要求和的 类型的 T
对象的向量。
返回
T
向量内所有元素的总和。