System.ComponentModel.DebugTypeDescriptor.CreateProperty C# (CSharp) Method

CreateProperty() private method

private CreateProperty ( Type componentType, string name, Type type ) : PropertyDescriptor
componentType System.Type
name string
type System.Type
return PropertyDescriptor
        public static PropertyDescriptor CreateProperty(Type componentType, string name, Type type, params Attribute[] attributes) {
            return new DebugReflectPropertyDescriptor(componentType, name, type, attributes);
        }

Same methods

DebugTypeDescriptor::CreateProperty ( Type componentType, PropertyDescriptor oldPropertyDescriptor ) : PropertyDescriptor