コード例 #1
0
 public ConcreteDecoratorB(Component c)
     : base(c)
 {
 }
コード例 #2
0
 public Decorator(Component c)
 {
     this.component = c;
 }