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

            return (guid == Guid.Empty);
        }