Chinchilla.Extensions.EventExtensions.Raise C# (CSharp) Method

Raise() public static method

public static Raise ( this handler, object sender ) : void
handler this
sender object
return void
        public static void Raise(this EventHandler<EventArgs> handler, object sender)
        {
            var copy = handler;
            if (copy != null)
            {
                copy(sender, EventArgs.Empty);
            }
        }
    }
EventExtensions