关于C# 设计模式 Decorator 装饰器模式
using System;
using System.Collections.Generic;
using System.Text;
///Decorator(装饰器)模式 通过对已经存在的某些类进行装饰,以此来扩展一些功能。
///add by jzh 2007-04-24
namespace DesignPattern
{
/// <summary>
/// Component(抽象构件)角色:给出一个抽象接口,以规范准备接收附加责任的对象。