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

deleteNameSpaces() public method

Part of the list interface for NameSpaces This deletion function removes an element from the collection in NameSpaces
public deleteNameSpaces ( int idx ) : void
idx int the index of the element to remove
return void
        public void deleteNameSpaces(int idx)
        {
            __setDirty(true);
              allNameSpaces().RemoveAt(idx);
            NotifyControllers(null);
        }

Same methods

Dictionary::deleteNameSpaces ( int idx, Lock aLock ) : void