1
1
using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Text ;
5
- using System . Threading . Tasks ;
6
2
7
3
namespace CommandPattern
8
4
{
9
- class Program
5
+ internal class Program
10
6
{
11
- static void Main ( string [ ] args )
7
+ private static void Main ( )
12
8
{
13
9
var remote = new RemoteControl ( 3 ) ;
14
10
@@ -21,11 +17,13 @@ static void Main(string[] args)
21
17
var carDoorClose = new GarageDoorCloseCommand ( car ) ;
22
18
var carDoorOpen = new GarageDoorOpenCommand ( car ) ;
23
19
24
- var garage_button = new OnOffStruct ( ) ;
25
- garage_button . On = bikeDoorOpen ;
26
- garage_button . Off = bikeDoorClose ;
20
+ var garageButton = new OnOffStruct
21
+ {
22
+ On = bikeDoorOpen ,
23
+ Off = bikeDoorClose
24
+ } ;
27
25
28
- remote [ 0 ] = garage_button ;
26
+ remote [ 0 ] = garageButton ;
29
27
remote . PushOn ( 0 ) ;
30
28
remote . PushUndo ( ) ;
31
29
remote . PushUndo ( ) ;
@@ -35,21 +33,22 @@ static void Main(string[] args)
35
33
Console . WriteLine ( ) ;
36
34
var light = new Light ( "Hall" ) ;
37
35
38
- Command [ ] partyOn = { new LightOffCommand ( light ) , bikeDoorOpen , carDoorOpen } ;
39
- Command [ ] partyOff = { new LightOnCommand ( light ) , bikeDoorClose , carDoorClose } ;
36
+ ICommand [ ] partyOn = { new LightOffCommand ( light ) , bikeDoorOpen , carDoorOpen } ;
37
+ ICommand [ ] partyOff = { new LightOnCommand ( light ) , bikeDoorClose , carDoorClose } ;
40
38
41
39
42
- remote [ 2 ] = new OnOffStruct { On = new MacroCommand ( partyOn ) , Off = new MacroCommand ( partyOff ) } ;
40
+ remote [ 2 ] = new OnOffStruct { On = new MacroCommand ( partyOn ) , Off = new MacroCommand ( partyOff ) } ;
43
41
44
42
try
45
43
{
46
44
remote . PushOn ( 2 ) ;
47
45
Console . WriteLine ( ) ;
48
46
remote . PushOff ( 2 ) ;
49
- } catch ( Exception )
47
+ }
48
+ catch ( Exception )
50
49
{
51
50
Console . WriteLine ( "Oops" ) ;
52
51
}
53
52
}
54
53
}
55
- }
54
+ }
0 commit comments