TurnOn() 공개 메소드

public TurnOn ( bool on ) : void
on bool
리턴 void
예제 #1
0
 public void CrankTunes(bool state)
 {
     // Delegate request to inner object.
     theMusicBox.TurnOn(state);
 }
예제 #2
0
 public void CrankTunes(bool state)
 {
     theMusicBox.TurnOn(state);
 }
예제 #3
0
파일: Car.cs 프로젝트: trollric/Csharp_chp3
 public void CrankTunes(bool state)
 {
     // delegate request to the inner Radio class
     theMusicBox.TurnOn(state);
 }
예제 #4
0
 public void CrankTunes(bool state)
 {
     //委托请求到内部对象
     theMusicBox.TurnOn(state);
 }
예제 #5
0
 public void CrankTunes(bool state)
 {
     //Делегировать запрос внутреннему объекту
     theMusicBox.TurnOn(state);
 }