12 references to Hashtable
System.Collections.NonGeneric (1)
System\Collections\Specialized\CollectionsUtil.cs (1)
24return new Hashtable(capacity, StringComparer.CurrentCultureIgnoreCase);
System.Collections.Specialized (4)
System\Collections\Specialized\HybridDictionary.cs (2)
53hashtable = new Hashtable(initialSize, StringComparer.OrdinalIgnoreCase); 126newTable = new Hashtable(InitialHashtableSize, StringComparer.OrdinalIgnoreCase);
System\Collections\Specialized\NameObjectCollectionBase.cs (1)
119_entriesTable = new Hashtable(capacity, _keyComparer);
System\Collections\Specialized\OrderedDictionary.cs (1)
141private Hashtable EnsureObjectsTable() => _objectsTable ??= new Hashtable(_initialCapacity, _comparer);
System.Configuration.ConfigurationManager (3)
System\Configuration\Provider\ProviderCollection.cs (1)
15_hashtable = new Hashtable(10, StringComparer.OrdinalIgnoreCase);
System\Configuration\SettingsPropertyCollection.cs (1)
15_hashtable = new Hashtable(10, StringComparer.CurrentCultureIgnoreCase);
System\Configuration\SettingsPropertyValueCollection.cs (1)
16_indices = new Hashtable(10, StringComparer.CurrentCultureIgnoreCase);
System.Net.WebHeaderCollection (1)
System\Net\HeaderInfoTable.cs (1)
87var headers = new Hashtable(Items * 2, StringComparer.OrdinalIgnoreCase)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
449Hashtable ht = new Hashtable(_count, _keycomparer);
System.Private.Xml (2)
System\Xml\Xsl\XsltOld\HtmlProps.cs (2)
57Hashtable table = new Hashtable(71, StringComparer.OrdinalIgnoreCase); 168Hashtable table = new Hashtable(26, StringComparer.OrdinalIgnoreCase);