System.ComponentModel.EditorAttribute
namespace System.ComponentModel
{
public sealed class EditorAttribute : Attribute
{
public string EditorBaseTypeName { get; }
public string EditorTypeName { get; }
public EditorAttribute();
public EditorAttribute(string typeName, string baseTypeName);
public EditorAttribute(string typeName, Type baseType);
public EditorAttribute(Type type, Type baseType);
}
}