コード例 #1
0
ファイル: TV.cs プロジェクト: plus1319/DesignPatternsByCsharp
 public void setState(RemoteControl remoteControl)
 {
     _state = remoteControl;
 }
コード例 #2
0
ファイル: TV.cs プロジェクト: plus1319/DesignPatternsByCsharp
 public Tv(RemoteControl remoteControl)
 {
     _state = remoteControl;
 }