コード例 #1
0
ファイル: Program.cs プロジェクト: qwertykeith/ArduinoLibrary
 static void runTest(ITestThingy test)
 {
     test.Running = true;
     test.Run();
     while (test.Running)
     {
         ;
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: DiLRandI/ArduinoLibrary
 static void runTest(ITestThingy test)
 {
     test.Running = true;
     test.Run();
     while (test.Running) ;
 }