EAPUtilIsNullOrBlank Method (Object) |
Determines if an object is null or a blank (empty) string.
A DBNull object is considered null.
Note that this function is identical to
IsNullObjectOrEmptyString(Object).
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static bool IsNullOrBlank(
Object obj
)
Public Shared Function IsNullOrBlank (
obj As Object
) As Boolean
Parameters
- obj
- Type: SystemObject
The object in question.
Return Value
Type:
BooleanTrue if the object is null or it is a blank (empty) string.
See Also