forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
26 lines (23 loc) · 841 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Builder
{
public class Program
{
public static void Main(string[] args)
{
ActorBuilder builder = (ActorBuilder)AppConfigHelper.GetConcreteBuilderInstance();
ActorController director = new ActorController();
Actor actor = director.Construct(builder);
Console.WriteLine("角色类型:{0}", actor.Type);
Console.WriteLine("角色性别:{0}", actor.Sex);
Console.WriteLine("角色面容:{0}", actor.Face);
Console.WriteLine("角色服装:{0}", actor.Costume);
Console.WriteLine("角色发型:{0}", actor.HairStyle);
Console.ReadKey();
}
}
}