void IDisposable.Dispose() { // Multiple calls to dispose must be tolerated if (control != null) { control.EndUpdate(); control = null; State = null; } }
public TrackerUpdate(TrackerControl c, TrackerState s) { this.control = c; this.State = s; }