System::Nullable::operator+ method

Nullable::operator+(const Nullable<T1>&) const method

Sums nullable values.

template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
ParameterDescription
T1Right operand type.
ParameterTypeDescription
otherconst Nullable<T1>&value to add.

ReturnValue

Summing result.

See Also

Nullable::operator+(const T1&) const method

Sums nullable and non-nullable values.

template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
ParameterDescription
T1Right operand type.
ParameterTypeDescription
otherconst T1&value to add.

ReturnValue

Summing result.

See Also

Nullable::operator+(std::nullptr_t) const method

Returns a default constructed instance of Nullable class.

Nullable<T> System::Nullable<T>::operator+(std::nullptr_t) const

See Also