コード例 #1
0
 public ConDecorator(AbsSubject obj) : base(obj)
 {
 }
コード例 #2
0
 public AbsDecorator(AbsSubject obj)
 {
     this.obj = obj;
 }