Function CSPString::operator !=()
Description:
Performs a "not equal to" lexicographical comparison between this and another string.
 |
Prototype:
bool operator !=(const CSPString& strString) const;
Arguments:
- const CSPString& strString [IN]
The string to compare to.
Return value:
If this string is not lexicographically equal to the string to compare to, it returns true. Otherwise, it returns false.
Remarks:
For more information about the data type conversions available, see the remarks section of class CSPString
|
|