4 references to Dictionary
Microsoft.AspNetCore.Http.Abstractions (1)
ProblemDetails\HttpValidationProblemDetails.cs (1)
36: this(new Dictionary<string, string[]>(errors ?? throw new ArgumentNullException(nameof(errors)), StringComparer.Ordinal))
System.Linq (1)
System\Linq\ToCollection.cs (1)
109return new(source, comparer);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
98public Dictionary(IEnumerable<KeyValuePair<TKey, TValue>> collection) : this(collection, null) { }
System.Text.Json (1)
System\Text\Json\JsonHelpers.cs (1)
270return new Dictionary<TKey, TValue>(collection: collection, comparer);