System::String::operator!= method

String::operator!=(const String&) const method

Non-equality comparison operator.

bool System::String::operator!=(const String &str) const
ParameterTypeDescription
strconst 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

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