|
StringExtensionsIsNullOrBlank Method
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Determines whether [is null or blank].
Namespace:
(Default Namespace)
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public static bool IsNullOrBlank(
this string str
)
<ExtensionAttribute>
Public Shared Function IsNullOrBlank (
str As String
) As Boolean
Dim str As String
Dim returnValue As Boolean
returnValue = str.IsNullOrBlank()
public:
[ExtensionAttribute]
static bool IsNullOrBlank(
String^ str
)
[<ExtensionAttribute>]
static member IsNullOrBlank :
str : string -> bool
Parameters
- str
- Type: SystemString
The string.
Return Value
Type:
Booleantrue if [is null or blank] [the specified string]; otherwise,
false.
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