ACR_ServerMisc.ACR_ServerMisc.DictionaryClear C# (CSharp) Method

DictionaryClear() private method

Delete entire contents of dictionary by dictionary id.
private DictionaryClear ( string DictID ) : void
DictID string Supplies the id of the Dictionary to access. ///
return void
        private void DictionaryClear(string DictID)
        {
            StorageList.Remove(DictID);
            StorageIteratorList.Remove(DictID);
        }