System::String::operator== method

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

Eşitlik karşılaştırma operatörü.

bool System::String::operator==(const String &str) const
ParametreTürAçıklama
strconst String&String mevcut olanla karşılaştırmak için.

ReturnValue

her iki dize de null ise veya her iki dize de null değil ve eşleşiyorsa true, aksi takdirde false.

Ayrıca Bakınız

String::operator==(std::nullptr_t) const method

Dizenin null olup olmadığını kontrol eder. Aynı mantığı IsNull() çağrısı gibi uygular.

bool System::String::operator==(std::nullptr_t) const

ReturnValue

true eğer dize null ise, false aksi takdirde.

Ayrıca Bakınız