コード例 #1
0
 /// <inheritdoc />
 public void ExceptWith(IEnumerable <T> other)
 {
     lock (Sync) InternalSource.ExceptWith(other);
 }
 /// <inheritdoc />
 public void ExceptWith(IEnumerable <T> other) => Sync.Write(() => InternalSource.ExceptWith(other));