طريقة System::Nullable::operator-

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

يطرح القيم nullable.

template<typename T1> System::Nullable<decltype(get_Value() - other.get_Value())> System::Nullable<T>::operator-(const Nullable<T1> &other) const
معاملالوصف
T1نوع العامل الأيمن.
معاملنوعالوصف
أخرىconst Nullable<T1>&القيمة المراد طرحها.

ReturnValue

نتيجة الطرح.

انظر أيضًا

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

يطرح القيم nullable والقيم غير nullable.

template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
معاملالوصف
T1نوع العامل الأيمن.
معاملنوعالوصف
أخرىconst T1&القيمة المراد طرحها.

ReturnValue

نتيجة الطرح.

انظر أيضًا

Nullable::operator-(T1) const method

يطرح القيم nullable والقيم التي تشير إلى null.

template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
معاملالوصف
T1نوع المعامل الأيمن، يجب أن يكون nullptr_t.

ReturnValue

كائن Nullable فارغ.

انظر أيضًا