Click or drag to resize

StringHelperIsNullEmptyOrWhitespace Method

Returns a boolean representing whether s is null, empty, or contains only whitespace.

Namespace:  Bootstrap.A11y.Helpers
Assembly:  Bootstrap.A11y (in Bootstrap.A11y.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
C#
public static bool IsNullEmptyOrWhitespace(
	string s
)

Parameters

s
Type: SystemString
The string to check.

Return Value

Type: Boolean
True if the string is null, empty, or contains only whitespace.
See Also