Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Front front = new Front();

            front.Run();

            Console.WriteLine("キー押下で終了します。");
            Console.ReadKey();
        }
Ejemplo n.º 2
0
 public PersonLogic(Front front)
 {
     this.front          = front;
     this.front.Message += Front_Message;
 }