Metodo System::Nullable::operator-

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

Sottrae 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 sottrarre.

ReturnValue

Risultato della sottrazione.

Vedi anche

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

Sottrae 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 sottrarre.

ReturnValue

Risultato della sottrazione.

Vedi anche

Nullable::operator-(T1) const method

Sottrae valori nullable e valori puntati a null.

template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
ParametroDescrizione
T1Tipo dell’operando destro, dovrebbe essere nullptr_t.

ReturnValue

Oggetto Nullable vuoto.

Vedi anche