Double.IAdditionOperators<Double,Double,Double>.Addition Operator  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds two values together to compute their sum.
 static double System.Numerics.IAdditionOperators<System.Double,System.Double,System.Double>.operator +(double left, double right) = System::Numerics::IAdditionOperators<double, double, double>::op_Addition;
	static double IAdditionOperators<double,double,double>.operator +(double left, double right);
	static member ( + ) : double * double -> double
	 Shared Operator + (left As Double, right As Double) As Double Implements IAdditionOperators(Of Double, Double, Double).op_Addition
	Parameters
- left
 - Double
 
The value to which right is added.
- right
 - Double
 
The value that's added to left.
Returns
The sum of left and right.