using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SmartCoalApplication.Core { /// /// Declares a delegate type for an event that needs a single integer, interpreted /// as an index, as event information. /// public delegate void IndexEventHandler(object sender, IndexEventArgs ce); }