System.UnicodeString.operator !=
C++
bool operator !=(const UnicodeString& rhs) const;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | ustring.h | System | UnicodeString |
Description
Compares two strings.
Returns True if the strings are not the same, False otherwise. The comparison operation is controlled by the current Windows locale, when appropriate.
Note: operator != performs a case-sensitive comparison. To ignore case, use the CompareIC method.