Adf.Base.Domain.DefaultPropertyParser.IsEmpty C# (CSharp) 메소드

IsEmpty() 공개 메소드

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