Adf.Base.Domain.DefaultPropertyParser.IsEmpty C# (CSharp) Method

IsEmpty() public method

Checks whether the specified Object is empty or not.
public IsEmpty ( object value ) : bool
value object The Object to be checked for null or empty.
return bool
        public bool IsEmpty(object value)
        {
            return (value == null) || string.IsNullOrEmpty(value.ToString());
        }