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