Adf.Base.Domain.DefaultPropertyParser.IsEmpty C# (CSharp) Méthode

IsEmpty() public méthode

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.
Résultat bool
        public bool IsEmpty(object value)
        {
            return (value == null) || string.IsNullOrEmpty(value.ToString());
        }