/// <summary> /// Creates clone of another <see cref="ListExitOperationBuilder"/> instance. /// </summary> /// <param name="other">The builder to clone.</param> public ListExitOperationBuilder(ListExitOperationBuilder other) { Preconditions.CheckNotNull(other); this.orders.AddRange(other.orders); this.MaxResults = other.MaxResults; this.FirstResult = other.FirstResult; this.Distinct = other.Distinct; this.Aggregation = other.Aggregation; }