Beispiel #1
0
        private static void OnEmailSent(int emailid)
        {
            EmailSuccessArgs handler = EmailSent;

            if (handler != null)
            {
                handler(emailid);
            }
        }
Beispiel #2
0
        private static void OnEmailSent(int emailid)
        {
            EmailSuccessArgs handler = EmailSent;

            handler?.Invoke(emailid);
        }