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

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 different objects, false if objects are same.

See Also

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

Checks if referenced object is not null.

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

ReturnValue

True if referenced object is not null, false otherwise.

See Also