System::String::operator!= method
String::operator!=(const String&) const method
Non-equality comparison operator.
bool System::String::operator!=(const String &str) const
Parameter | Type | Description |
---|---|---|
str | const String& | String to compare current one to. |
ReturnValue
false if both strings are null or both are not null and match, true otherwise.
See Also
- Class String
- Class String
- Namespace System
- Library Aspose.TeX for C++
String::operator!=(std::nullptr_t) const method
Checks if string is not null. Applies same logic as IsNull() call.
bool System::String::operator!=(std::nullptr_t) const
ReturnValue
false if string is null, true otherwise.
See Also
- Class String
- Namespace System
- Library Aspose.TeX for C++