コード例 #1
0
            public override object Clone()
            {
                ComplexChan newObj = new ComplexChan(this);

                foreach (Z.Pointer ptr in this.Queue)
                    newObj.Queue.Enqueue(ptr);

                return newObj;
            }
コード例 #2
0
			private ComplexChan(ComplexChan c) : base(c) { }