public void Load() { object obj = DataDumper.Load(key); content = (T)obj; if (content == null) { content = new T(); } }
public void Store() { DataDumper.Store(content, key); }