コード例 #1
0
        public override void Save(SettingsStorage storage)
        {
            base.Save(storage);

            storage.SetValue("FindedExecutions", FindedExecutions.Save());
        }
コード例 #2
0
        public override void Load(SettingsStorage storage)
        {
            base.Load(storage);

            FindedExecutions.Load(storage.GetValue <SettingsStorage>("FindedExecutions"));
        }