TBoundProperty<BSTR>.operator!=(BSTR) (Compact 7)
3/12/2014
The != overloaded operator determines if a binary string contained in a TBoundProperty<BSTR> object and another binary string are different strings.
Syntax
bool operator!=(
BSTR value)
Parameters
- value
[in] Binary string that is the right operand of a C++ expression.
Return Value
Returns true if the left operand and the right operand are lexicographically different strings. Otherwise, returns false.
Remarks
In a lexicographical comparison, if two strings have a different count of characters or the character values are different, the strings are considered to be different from one another.
Requirements
Header |
oleauto.h, |
Library |
oleaut32.lib |
See Also
Reference
C++ Overloaded Operators for BSTR
TBoundProperty<BSTR>.operator==(BSTR)
TBoundProperty<BSTR>