Esempio n. 1
0
        public static void Close(bool dispose = false)
        {
            mergedLineup_    = null;
            singletonLineup_ = null;

            if (objectStore_ != null)
            {
            }
            if (dispose)
            {
                if (objectStore_ != null)
                {
                    objectStore.Dispose();
                }
                if (singletonStore_ != null)
                {
                    ObjectStore.DisposeSingleton();
                }
            }
            objectStore_    = null;
            singletonStore_ = null;
        }