static void Main(string[] args) { Front front = new Front(); front.Run(); Console.WriteLine("キー押下で終了します。"); Console.ReadKey(); }
public PersonLogic(Front front) { this.front = front; this.front.Message += Front_Message; }