27 references to ArrayList
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (1)
295return new ArrayList(_scope.Keys);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\Function.cs (2)
56_argumentList = new ArrayList(argumentList); 64_argumentList = new ArrayList(argumentList);
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\ParserStack.cs (1)
48private ParserStack(ICollection collection) : base(collection)
PresentationFramework (9)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
516_viewList = new ArrayList(_rawList);
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
247ArrayList names = (ic == null) ? null : new ArrayList(ic);
System\Windows\Controls\DataGrid.cs (1)
2632ArrayList itemsToRemove = new ArrayList(SelectedItems);
System\Windows\Data\BindingListCollectionView.cs (2)
1436_cachedList = new ArrayList(InternalList); 1455_shadowList = new ArrayList(InternalList);
System\Windows\Data\ListCollectionView.cs (3)
48ShadowCollection = new ArrayList((ICollection)SourceCollection); 102ShadowCollection = new ArrayList((ICollection)SourceCollection); 1619ShadowCollection = new ArrayList((ICollection)SourceCollection);
System\Windows\Markup\ParserStack.cs (1)
48private ParserStack(ICollection collection) : base(collection)
System.ComponentModel.TypeConverter (3)
System\ComponentModel\Design\DesignerCollection.cs (1)
24_designers = new ArrayList(designers);
System\ComponentModel\TypeDescriptor.cs (2)
1902list = new ArrayList(members); 2065list = new ArrayList(filterTable.Values);
System.Net.WebProxy (1)
System\Net\WebProxy.cs (1)
226public ChangeTrackingArrayList(ICollection c) : base(c) { }
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Security\SecurityElement.cs (2)
285element._children = _children == null ? null : new ArrayList(_children); 286element._attributes = _attributes == null ? null : new ArrayList(_attributes);
System.Private.Xml (2)
System\Xml\Serialization\ImportContext.cs (1)
221return new ArrayList(_scope.Keys);
System\Xml\Serialization\XmlSerializerNamespaces.cs (1)
112return new ArrayList(_namespaces.Values);
System.Windows.Forms.Design (5)
System\ComponentModel\Design\ExceptionCollection.cs (1)
33public ArrayList? Exceptions => _exceptions is null ? null : new ArrayList(_exceptions);
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
1042comps = new ArrayList(comps);
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
304ArrayList origSel = new(originalSelComps);
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (1)
2039ArrayList origSel = new(originalSelComps);
System\Windows\Forms\Design\ToolStripMenuItemDesigner.cs (1)
2183origSel = new ArrayList(originalSelComps);
System.Windows.Forms.Tests (1)
System\Windows\Forms\KeysConverterTests.cs (1)
113object[] actualValues = new ArrayList(standardValuesCollection).ToArray();