System.ComponentModel.DebugTypeDescriptor.AddEditorTable C# (CSharp) 메소드

AddEditorTable() 공개 정적인 메소드

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