NFloat.Addition(NFloat, NFloat) 运算符

定义

将两个值相加以计算其总和。

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

参数

left
NFloat

向其 right 添加的值。

right
NFloat

添加到 left的值。

返回

NFloat

leftright 的和。

实现

适用于