System::Nullable::operator- método

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

Resta valores nullable.

template<typename T1> System::Nullable<decltype(get_Value() - other.get_Value())> System::Nullable<T>::operator-(const Nullable<T1> &other) const
ParámetroDescripción
T1Tipo de operando derecho.
ParámetroTipoDescripción
otroconst Nullable<T1>&valor a restar.

ReturnValue

Resultado de la resta.

Ver también

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

Resta valores nullable y no nullable.

template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
ParámetroDescripción
T1Tipo de operando derecho.
ParámetroTipoDescripción
otroconst T1&valor a restar.

ReturnValue

Resultado de la resta.

Ver también

Nullable::operator-(T1) const method

Resta valores nullable y valores apuntados a nulo.

template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
ParámetroDescripción
T1Tipo del operando derecho, debe ser nullptr_t.

ReturnValue

Objeto Nullable vacío.

Ver también