publicclassImageIcon : Icon { privateint width, height; publicImageIcon() { Thread.Sleep(5000);//Pretend there is some hard work to load the image width = 800; height = 1000; } publicvoidPrintIconWidthAndHeight() { Console.WriteLine(DateTime.Now.ToLongTimeString() + ": Width is " + width + ",height is " + height); } }