System.Collections.Stack.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
        public virtual object Clone() { throw null; }
        public virtual bool Contains(object obj) { throw null; }

Same methods

Stack::Clone ( ) : Object

Usage Example

 public override object Clone()
 {
     lock (stack)
     {
         return(Stack.Synchronized((Stack)stack.Clone()));
     }
 }
All Usage Examples Of System.Collections.Stack::Clone