Example #1
0
 private ChildIterator(ChildIterator other) : base(other)
 {
     _nav = other._nav == null ? null : other._nav.Clone();
 }
Example #2
0
 private ChildIterator(ChildIterator other) : base(other, true)
 {
 }
Example #3
0
		private ChildIterator (ChildIterator other) : base (other)
		{
			_nav = other._nav == null ? null : other._nav.Clone ();
		}
 private ChildIterator(ChildIterator other) : base(other)
 {
     this._nav = ((other._nav != null) ? other._nav.Clone() : null);
 }