QuantityValue<T>.Addition(QuantityValue<T>, QuantityValue<T>) Operator
Adds two QuantityValue<T> objects and returns the result as the QuantityValue<T> object.
Namespace: DevExpress.UnitConversion
Assembly: DevExpress.Docs.v25.1.dll
NuGet Package: DevExpress.Document.Processor
Declaration
public static QuantityValue<T> operator +(QuantityValue<T> value1, QuantityValue<T> value2)
Parameters
| Name | Type | Description |
|---|---|---|
| value1 | QuantityValue<T> | The first QuantityValue<T> object to add. |
| value2 | QuantityValue<T> | The second QuantityValue<T> object to add. |
Returns
| Type | Description |
|---|---|
| QuantityValue<T> | The sum of two QuantityValue<T> objects. |
See Also