Head First C#

Head First C# Code: Chapter 11
Baseball with Callback
Bat.cs

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _1_Baseball___with_callback
{
    public delegate void BatCallback(BallEventArgs e);
}