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

removeTests() public method

Part of the list interface for Tests This deletion function removes an element from the collection in Tests If the object given in parameter is not found in the the collection, this function does nothing.
public removeTests ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeTests(IXmlBBase obj)
        {
            int idx = indexOfTests(obj);
              if (idx >= 0) { deleteTests(idx);
            NotifyControllers(null);
               }
        }

Same methods

Dictionary::removeTests ( IXmlBBase obj, Lock aLock ) : void