Adf.Core.Extensions.DescriptorExtensions.IsNullOrEmpty C# (CSharp) Метод

IsNullOrEmpty() публичный статический Метод

public static IsNullOrEmpty ( this value ) : bool
value this
Результат bool
        public static bool IsNullOrEmpty(this Descriptor value)
        {
            return value == null || value.IsEmpty;
        }
DescriptorExtensions