Adf.Core.Extensions.DescriptorExtensions.IsNullOrEmpty C# (CSharp) Méthode

IsNullOrEmpty() public static méthode

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