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

removeTestRefs() public method

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

Same methods

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