Microsoft.Zing.Application.SimpleChan.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
            public override object Clone()
            {
                SimpleChan newObj = new SimpleChan(this);

                foreach (_ElementType v in this.Queue)
                    newObj.Queue.Enqueue(v);

                return newObj;
            }