Ejemplo n.º 1
0
 public LocalCacheManager(string saveID)
 {
     m_saveID = saveID;
     m_data   = new Dictionary <string, LocalCacheBase>();
     Load();
     m_dicData = GetData <DictionaryCache>();
     if (m_dicData == null)
     {
         m_dicData = new DictionaryCache();
     }
 }
Ejemplo n.º 2
0
 public void Clear()
 {
     m_data.Clear();
     m_dicData = new DictionaryCache();
 }