NFloat.Addition(NFloat, NFloat) Operator

Definition

Adds two values together to compute their sum.

public:
 static System::Runtime::InteropServices::NFloat operator +(System::Runtime::InteropServices::NFloat left, System::Runtime::InteropServices::NFloat right) = System::Numerics::IAdditionOperators<System::Runtime::InteropServices::NFloat, System::Runtime::InteropServices::NFloat, System::Runtime::InteropServices::NFloat>::op_Addition;
public static System.Runtime.InteropServices.NFloat operator + (System.Runtime.InteropServices.NFloat left, System.Runtime.InteropServices.NFloat right);
static member ( + ) : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Operator + (left As NFloat, right As NFloat) As NFloat

Parameters

left
NFloat

The value to which right is added.

right
NFloat

The value that's added to left.

Returns

The sum of left and right.

Implements

Applies to