Adf.Base.Domain.GuidPropertyParser.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
리턴 bool
        public bool IsEmpty(object value)
        {
            Guid guid = new Guid(value.ToString());

            return (guid == Guid.Empty);
        }