System::String::IsNullOrEmpty मेथड

String::IsNullOrEmpty() const method

जाँचता है कि स्ट्रिंग खाली है या इसे null माना जाता है।

bool System::String::IsNullOrEmpty() const

ReturnValue

यदि स्ट्रिंग खाली या null है तो true, अन्यथा false।

संबंधित देखें

String::IsNullOrEmpty(const String&) method

जाँचता है कि पास की गई स्ट्रिंग null है या खाली है।

static bool System::String::IsNullOrEmpty(const String &str)
पैरामीटरप्रकारविवरण
strconst String&String जांचने के लिए।

ReturnValue

यदि स्ट्रिंग null या खाली है तो true, अन्यथा false।

संबंधित देखें