示例#1
0
        public void TestMethod()
        {
            IText text = new TextObject();

            text = new BoldDecorator(text);
            text = new ColorDecorator(text);

            //text = new BlockAllDecortor(text);

            Console.WriteLine(text.Content);
        }
示例#2
0
        public void TestMethod()
        {
            IText text = new TextObject();

            text = new BoldDecorator(text);
            text = new ColorDecorator(text);

            //text = new BlockAllDecortor(text);

            Console.WriteLine(text.Content);
        }