コード例 #1
0
ファイル: Form1.cs プロジェクト: brandshub/ttc-monitor
 public Form1()
 {
     InitializeComponent();
     config = new ScheduleSetup(6132, 2, 20);
     s1     = new Schedule(config);
 }
コード例 #2
0
ファイル: Schedule.cs プロジェクト: brandshub/ttc-monitor
 public Schedule(ScheduleSetup configuraton)
 {
     Configuration = configuraton;
     Iteration     = 0;
     Items         = new List <TradeItem>();
 }