public TimerTask(string timerName, CbRichTimer handler, TimerConfiguration config, object theTag) { this.callBackHandler = handler; this.timerConfiguration = config; this.name = timerName; this.tag = theTag; }
public override bool Equals(object obj) { TimerConfiguration configuration = obj as TimerConfiguration; if (configuration == null) { return(false); } return(this == configuration); }