System::WeakReference< T >::operator== method

WeakReference< T >::operator==(std::nullptr_t) const method

Checks if referenced object is null.

bool System::WeakReference<T>::operator==(std::nullptr_t) const

ReturnValue

True if referenced object is null, false otherwise.

See Also

WeakReference< T >::operator==(const WeakReference<T>&) const method

Compares referenced object to another instance WeakReference class.

bool System::WeakReference<T>::operator==(const WeakReference<T> &other) const
ParameterTypeDescription
otherconst WeakReference<T>&Object compare to.

ReturnValue

True if compared objects reference the same object, false otherwise.

See Also