コード例 #1
0
ファイル: XPathIterators.cs プロジェクト: ForNeVeR/pnet
 public XPathAncestorOrSelfIterator(XPathAncestorOrSelfIterator copy) : base(copy)
 {
     // TODO : do we need to clone this ?
     if (this.parents != null)
     {
         this.parents = (ArrayList)this.parents.Clone();
     }
 }
コード例 #2
0
		public XPathAncestorOrSelfIterator(XPathAncestorOrSelfIterator copy) : base (copy)
		{
			// TODO : do we need to clone this ?
			if(this.parents != null)
			{
				this.parents = (ArrayList)this.parents.Clone();
			}
		}