示例#1
0
        public virtual void Init()
        {
            this.AutoSaveIcon = AutoSaveIcon.Get();

            if (this.PersistanceManagerThreadObject == null)
            {
                this.PersistanceManagerThreadObject = new PersistanceManagerThreadObject(OnNoMorePersistanceProcessingCallback: this.OnNoMorePersistanceProcessing);
            }
        }
示例#2
0
        public static AutoSaveIcon Get()
        {
            if (Instance == null)
            {
                Instance = new AutoSaveIcon();
            }

            return(Instance);
        }