Vector<T>.Addition(Vector<T>, Vector<T>) Оператор

Определение

Складывает два вектора.

public:
 static System::Numerics::Vector<T> operator +(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> operator + (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member ( + ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( + ) : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator + (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

Параметры

left
Vector<T>

Первый складываемый вектор.

right
Vector<T>

Второй вектор, который необходимо сложить.

Возвращаемое значение

Суммарный вектор.

Исключения

.NET 5 и более поздних версий: тип T не поддерживается.

Комментарии

Метод Addition определяет операцию сложения для Vector<T> объектов .

Применяется к