Beispiel #1
0
 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));
 }
Beispiel #2
0
 public int IndexOf(TimePoint timePoint)
 {
     return(TimePoints.IndexOf(timePoint));
 }
Beispiel #3
0
 public void Remove(TimePoint timePoint)
 {
     TimePoints.Remove(timePoint);
 }