System.ComponentModel.EditorAttribute.EditorAttribute C# (CSharp) Method

EditorAttribute() public method

public EditorAttribute ( string typeName, string baseTypeName ) : System.Diagnostics
typeName string
baseTypeName string
return System.Diagnostics
        public EditorAttribute(string typeName, string baseTypeName) {
            string temp = typeName.ToUpper(CultureInfo.InvariantCulture);
            Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension");
            this.typeName = typeName;
            this.baseTypeName = baseTypeName;
        }

Same methods

EditorAttribute::EditorAttribute ( ) : System.Diagnostics
EditorAttribute::EditorAttribute ( Type type, Type baseType ) : System.Diagnostics
EditorAttribute::EditorAttribute ( string typeName, Type baseType ) : System.Diagnostics