static void Main(string[] args) { Football football = new Football(); Goal goal = new Goal(); football.GoalArrived += new GoalHandler(goal.Messi); football.Connect(); Console.ReadLine(); }