Click or drag to resize
StringIsNullOrEmpty Method
Indicates whether the specified string is null or an Empty string.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static bool IsNullOrEmpty(
	string value
)

Parameters

value
Type: SystemString
The string to test.

Return Value

Type: Boolean
true if the value parameter is null or an empty string (""); otherwise, false.
See Also