public int Add(TimePoint timePoint) { //Debug.Assert (timePoint != null, "Can not add <null> TimePoint."); if (timePoint == null) { throw new ArgumentNullException("timePoint", SR.GetString("LE_TimePointNull")); } return(TimePoints.Add(timePoint)); }
public int IndexOf(TimePoint timePoint) { return(TimePoints.IndexOf(timePoint)); }
public void Remove(TimePoint timePoint) { TimePoints.Remove(timePoint); }