/// <inheritdoc /> public void ExceptWith(IEnumerable <T> other) { lock (Sync) InternalSource.ExceptWith(other); }
/// <inheritdoc /> public void ExceptWith(IEnumerable <T> other) => Sync.Write(() => InternalSource.ExceptWith(other));