7 references to AddRange
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\TextDocumentStates.cs (1)
150States.AddRange(states.Select(state => KeyValuePairUtil.Create(state.Id, state))),
System.Collections.Immutable (6)
System\Collections\Immutable\ImmutableSortedDictionary.cs (5)
60return ImmutableSortedDictionary<TKey, TValue>.Empty.AddRange(items); 73return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer).AddRange(items); 87return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer).AddRange(items); 145.AddRange(source.Select(element => new KeyValuePair<TKey, TValue>(keySelector(element), elementSelector(element)))); 209return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer).AddRange(source);
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (1)
409return this.AddRange(pairs);