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

GetEditor() public static method

public static GetEditor ( Type type, Type editorBaseType ) : object
type System.Type
editorBaseType System.Type
return object
        public static object GetEditor(Type type, Type editorBaseType) {
            Debug.Assert(type != null, "Can't get editor for null type");
            return GetEntry(null, type).GetEditor(editorBaseType);
        }

Same methods

DebugTypeDescriptor::GetEditor ( object component, Type editorBaseType ) : object
DebugTypeDescriptor::GetEditor ( object component, Type editorBaseType, bool noCustomTypeDesc ) : object