I am very new to using C# event handling. Our application has the following events defined:
public sealed class MonitorCallback : IMonitorCallback
{
public event EventHandler<ApplyEventArgs> ApplyAccepted;
public event EventHandler<ApplyEventArgs> ApplyRejected;
}
I need to write some code to handle and respond these events when they are fired. Could someone get me started as to how I might do this?
Visual Studio will automatically create stubs for the event handler function when you start typing the
+=below and hit TAB.