System.ComponentModel.TypeDescriptor.TypeDescriptionNode.IsSupportedType C# (CSharp) 메소드

IsSupportedType() 공개 메소드

public IsSupportedType ( Type type ) : bool
type System.Type
리턴 bool
            public override bool IsSupportedType(Type type)
            {
                if (type == null)
                {
                    throw new ArgumentNullException(nameof(type));
                }
                return Provider.IsSupportedType(type);
            }