System.Collections.Queue.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

Queue::Clone ( ) : Object

Usage Example

 static public int Clone(IntPtr l)
 {
     try {
         System.Collections.Queue self = (System.Collections.Queue)checkSelf(l);
         var ret = self.Clone();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of System.Collections.Queue::Clone