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

AddEditorTable() public static method

public static AddEditorTable ( Type editorBaseType, Hashtable table ) : void
editorBaseType System.Type
table System.Collections.Hashtable
return void
        public static void AddEditorTable(Type editorBaseType, Hashtable table) {
            lock(editorTables) {
                if (!editorTables.ContainsKey(editorBaseType)) {
                    editorTables[editorBaseType] = table;
                }
            }
        }