Home » C# String IsNullOrEmpty() method

C# String IsNullOrEmpty() method

by Online Tutorials Library

C# String IsNullOrEmpty()

The C# IsNullOrEmpty() method is used to check whether the specified string is null or an Empty string. It returns a boolean value either true or false.

Signature

Parameter

str: it is a string parameter which is used to check string.

Return

It returns boolean value.


C# String IsNullOrEmpty() Method Example

Output:

False True 

You may also like