Implemented interface member:
method
Clone
System.ICloneable.Clone()
7 overrides of Clone
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\ParserStack.cs (1)
74public override object Clone()
PresentationFramework (1)
System\Windows\Markup\ParserStack.cs (1)
74public override object Clone()
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
801public override object Clone() 1252public override object Clone() 1715public override object Clone() 1970public override object Clone() 2250public override object Clone()
10 references to Clone
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeIdentifiers.cs (1)
197newIdentifiers._list = (ArrayList)_list.Clone();
ReachFramework (1)
AlphaFlattener\Primitive.cs (1)
2087_children = (ArrayList)_children.Clone();
System.Configuration.ConfigurationManager (1)
System\Configuration\SettingsPropertyValueCollection.cs (1)
123_values = (ArrayList)values.Clone();
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (4)
1256return new SyncArrayList((ArrayList)_list.Clone()); 1718arrayList._list = (ArrayList)_list.Clone(); 1973arrayList._list = (ArrayList)_list.Clone(); 2254arrayList._baseList = (ArrayList)_baseList.Clone();
System.Private.Xml (1)
System\Xml\Serialization\CodeIdentifiers.cs (1)
186newIdentifiers._list = (ArrayList)_list.Clone();
UIAutomationClient (2)
System\Windows\Automation\CacheRequest.cs (2)
233return new CacheRequest(_viewCondition, _scope, (ArrayList)_properties.Clone(), (ArrayList)_patterns.Clone(), _automationElementMode, _uiaCacheRequest);