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