コード例 #1
0
ファイル: Program.cs プロジェクト: JohnnySyu/design-Patterns-
        static void Main(string[] args)
        {
            SchoolGirl Marry = new SchoolGirl();

            Marry.Name = "馬力";
            proxy toolMan = new proxy(Marry);

            toolMan.GiveFlowers();
            toolMan.GiveChocolate();
            toolMan.GiveDolls();

            Console.Read();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: JohnnySyu/design-Patterns-
 public proxy(SchoolGirl schoolGirl)
 {
     gg = new Pursuit(schoolGirl);
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: JohnnySyu/design-Patterns-
 public Pursuit(SchoolGirl SchoolGirl)
 {
     this.mm = SchoolGirl;
 }