String::==

String::==
bool operator ==(const String& str) const;
bool operator ==(const char* str) const;
bool operator ==(const NoCaseKey& strKey) const;
Description

== operator compares two strings.

Parameters
Parameters 
Description 
const String& str 
String for comparison. 
const NoCaseKey& strKey 
Insensitive key. 
Return Value

A Boolean value of true if the strings are equal.