コード例 #1
0
ファイル: Bridge.cs プロジェクト: w4560000/CSharp_Practice
 public ConcreteRemoter(IControlImplementor controlImplementor)
     : base(controlImplementor)
 {
 }
コード例 #2
0
ファイル: Bridge.cs プロジェクト: w4560000/CSharp_Practice
 protected RemoteControl(IControlImplementor controlImplementor)
 {
     this._controlImplementor = controlImplementor;
 }