Implemented interface member:
2 overrides of Clone
System.Collections.NonGeneric (1)
System\Collections\Stack.cs (1)
256public override object Clone()
System.Diagnostics.TraceSource (1)
System\Diagnostics\CorrelationManager.cs (1)
63public override object Clone() => new AsyncLocalStackWrapper(_stack);
5 references to Clone
PresentationFramework (4)
System\Windows\Markup\ParserContext.cs (4)
162_nameScopeStack = (Stack)parserContext._nameScopeStack.Clone(); 660context._nameScopeStack = (_nameScopeStack != null) ? (Stack)_nameScopeStack.Clone() : null; 665context._langSpaceStack = (_langSpaceStack != null) ? (Stack)_langSpaceStack.Clone() : null; 673context._freezeStack = (_freezeStack != null) ? (Stack) _freezeStack.Clone() : null;
System.Collections.NonGeneric (1)
System\Collections\Stack.cs (1)
260return new SyncStack((Stack)_s.Clone());