Ejemplo n.º 1
0
        public virtual void Init()
        {
            this.AutoSaveIcon = AutoSaveIcon.Get();

            if (this.PersistanceManagerThreadObject == null)
            {
                this.PersistanceManagerThreadObject = new PersistanceManagerThreadObject(OnNoMorePersistanceProcessingCallback: this.OnNoMorePersistanceProcessing);
            }
        }
Ejemplo n.º 2
0
        public static AutoSaveIcon Get()
        {
            if (Instance == null)
            {
                Instance = new AutoSaveIcon();
            }

            return(Instance);
        }