Addition Operator (Vector)
In This Topic
Defines the + operator for vector.
Syntax
'Declaration
Public Operator +( _
ByVal As Vector, _
ByVal As Vector _
) As Vector
public Vector operator +(
Vector ,
Vector
)
Parameters
- left
- A Vector indicates the left operand.
- right
- A Vector indicates the right operand.
Return Value
A Vector that is the add result of the left and right operands.
See Also