Inheritance: System.EventArgs
Esempio n. 1
0
 private static void LogEventHandler(LogEventArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(null, e);
     }
 }
Esempio n. 2
0
 private static void LogEventHandler(LogEventArgs e)
 {
     LogEvent?.Invoke(null, e);
 }