Click or drag to resize

EAPUtilIsNullObjectOrEmptyString Method

Determine if an object is null or a blank string. A DBNull object is considered null. Note that this function is identical to IsNullOrBlank(Object).

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static bool IsNullObjectOrEmptyString(
	Object obj
)

Parameters

obj
Type: SystemObject
The object in question.

Return Value

Type: Boolean
True if the object is null, or is a blank string, else false.
See Also