コード例 #1
0
ファイル: Reminder.cs プロジェクト: drew-loukusa/CSSBot
 public void AddTimeSpan(TimeSpan ts)
 {
     if (!ContainsTimeSpan(ts))
     {
         ReminderTimeSpanTicks.Add(ts.Ticks);
     }
     CheckExpiredTimeSpan();
 }