Aqueduct.SitecoreLib.Domain.Image.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( Image image ) : bool
image Image
return bool
        public static bool IsNullOrEmpty(Image image)
        {
            if (image == null)
                return true;
            return image.IsEmpty;
        }