StringExtensionsIsNullOrWhiteSpace Method |
Indicates whether the spesified string is null or Empty or only whitespace.
Wraps System.String.IsNullOrWhiteSpace
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static bool IsNullOrWhiteSpace(
this string input
)
Parameters
- input
- Type: SystemString
The string to test
Return Value
Type:
BooleanFalse if input contains characters that are not whitespace characters
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also