Exemplo n.º 1
0
            public override object Clone()
            {
                SimpleChan newObj = new SimpleChan(this);

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

                return newObj;
            }
Exemplo n.º 2
0
			private SimpleChan(SimpleChan c) : base(c) { }