コード例 #1
0
ファイル: Program.cs プロジェクト: Rhedtek/TestFramework
        static void TestReport()
        {
            PeriodicReports reports = new PeriodicReports();

            reports.Start(null);

            while (true)
            {
                Thread.Sleep(10000);
            }
        }
コード例 #2
0
 // This process is responsible for sending period reports
 private void StartPeriodicReports()
 {
     mPeriodicReports = new PeriodicReports();
     mPeriodicReports.Start(this);
 }