Add method

void Add(
  1. TChange change
)
Adds the specified change. The change.

Implementation

void Add(TChange change) {
  EwsUtilities.Assert(change != null, "ChangeList.Add", "change is null");

  this._changes.add(change);
}