Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            IImage image = new ProxyImage("test_154gb.jpg");

            image.Display();
            Console.WriteLine("");

            image.Display();
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            IImage image = new ProxyImage("testImage.jpg");

            // This will load from disk
            image.Display();
            // This will load from cache.
            image.Display();

            Console.ReadKey();
        }