operator!=()

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

Non-equality comparison operator.

bool System::String::operator!=(const String &str) const

Arguments

ParameterTypeDescription
strconst String&String to compare current one to.

Return Value

false if both strings are null or both are not null and match, true otherwise.

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

Return Value

false if string is null, true otherwise.

See Also