Example #1
0
        public void Load()
        {
            object obj = DataDumper.Load(key);

            content = (T)obj;
            if (content == null)
            {
                content = new T();
            }
        }
Example #2
0
 public void Store()
 {
     DataDumper.Store(content, key);
 }