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

deleteTestRefs() public method

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

Same methods

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