コード例 #1
0
ファイル: Iterator.cs プロジェクト: xiaochuwang/mono
 private PredicateIterator(PredicateIterator other) : base(other)
 {
     _iter    = (BaseIterator)other._iter.Clone();
     _pred    = other._pred;
     resType  = other.resType;
     finished = other.finished;
 }
コード例 #2
0
ファイル: Iterator.cs プロジェクト: cyplo/mono
		private PredicateIterator (PredicateIterator other) : base (other)
		{
			_iter = (BaseIterator) other._iter.Clone ();
			_pred = other._pred;
			resType = other.resType;
			finished = other.finished;
		}