Adf.Core.Extensions.DescriptorExtensions.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( this value ) : bool
value this
return bool
        public static bool IsNullOrEmpty(this Descriptor value)
        {
            return value == null || value.IsEmpty;
        }
DescriptorExtensions