상속: System.EventArgs
예제 #1
0
 private static void LogEventHandler(LogEventArgs e)
 {
     if (LogEvent != null)
     {
         LogEvent(null, e);
     }
 }
예제 #2
0
 private static void LogEventHandler(LogEventArgs e)
 {
     LogEvent?.Invoke(null, e);
 }