Beispiel #1
0
 /// <summary>True if <paramref name="me"/> is placed after or on the same point as <paramref name="other"/> on the timeline.</summary>
 public static bool IsAfterOrSameInstantAs(this ITimePoint me, ITimePoint other)
 {
     return(!me.IsBefore(other));
 }