Implemented interface member:
method
Clone
System.ICloneable.Clone()
1 override of Clone
mscorlib (1)
system\collections\stack.cs (1)
253public override Object Clone()
5 references to Clone
mscorlib (1)
system\collections\stack.cs (1)
256return new SyncStack((Stack)_s.Clone());
PresentationFramework (4)
src\Framework\System\Windows\Markup\ParserContext.cs (4)
175_nameScopeStack = (Stack)parserContext._nameScopeStack.Clone(); 689context._nameScopeStack = (_nameScopeStack != null) ? (Stack)_nameScopeStack.Clone() : null; 694context._langSpaceStack = (_langSpaceStack != null) ? (Stack)_langSpaceStack.Clone() : null; 702context._freezeStack = (_freezeStack != null) ? (Stack) _freezeStack.Clone() : null;