Esempio n. 1
0
        //-----------------------------------------------------------------------------------------------------------------------

        public static SingletonMovieList GetInstance()
        {
            if (Instance == null)
            {
                Instance = new SingletonMovieList();
            }
            return(Instance);
        }