コード例 #1
0
ファイル: Form1.cs プロジェクト: khadijaAssem/DASystemGUI
 public void editDebuggingText(String text)
 {
     try
     {
         Invoke(new Action(() =>
         {
             Debugging.AppendText(Timer.Text + " >> " + text);
         }));
     }
     catch (Exception E)
     {
         Console.WriteLine("Failed To Add Debug Data Text");
         Console.WriteLine(E.StackTrace);
     }
 }