Returns true if string is null or empty.

Namespace:  Sasa.String
Assembly:  Sasa (in Sasa.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function IsNullOrEmpty ( _
	s As String _
) As Boolean
C#
public static bool IsNullOrEmpty(
	string s
)
Visual C++
public:
static bool IsNullOrEmpty(
	String^ s
)
JavaScript
Sasa.String.StringExt.isNullOrEmpty = function(s);

Parameters

s
Type: System..::.String
The string to test.

Return Value

True if the string is null or of length 0.

See Also