NeverEnds method

void NeverEnds()
Sets up this recurrence so that it never ends. Calling NeverEnds is equivalent to setting both NumberOfOccurrences and EndDate to null.

Implementation

void NeverEnds() {
  this._numberOfOccurrences = null;
  this._endDate = null;
  this.Changed();
}