System::Nullable::operator+ method

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

Somma valori nullable.

template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
ParametroDescrizione
T1Tipo dell’operando destro.
ParametroTipoDescrizione
altroconst Nullable<T1>&valore da aggiungere.

ReturnValue

Risultato della somma.

Vedi anche

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

Somma valori nullable e non-nullable.

template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
ParametroDescrizione
T1Tipo dell’operando destro.
ParametroTipoDescrizione
altroconst T1&valore da aggiungere.

ReturnValue

Risultato della somma.

Vedi anche

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

Restituisce un’istanza costruita di default della classe Nullable.

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

Vedi anche