Example #1
0
 public static void SilentLog(string msg)
 {
     CbLog?.Invoke(msg);
 }
Example #2
0
 public static void Log(string msg)
 {
     MessageBox.Show(msg);
     CbLog?.Invoke(msg);
 }