DataDictionary.Generated.Dictionary.insertNameSpaces C# (CSharp) Method

insertNameSpaces() public method

Part of the list interface for NameSpaces This insertion function inserts a new element in the collection in NameSpaces
public insertNameSpaces ( int idx, NameSpace el ) : void
idx int the index where the insertion must take place
el NameSpace the element to insert
return void
        public void insertNameSpaces(int idx, NameSpace el)
        {
            __setDirty(true);
              allNameSpaces().Insert (idx, el);
            NotifyControllers(null);
        }

Same methods

Dictionary::insertNameSpaces ( int idx, NameSpace el, Lock aLock ) : void