public bool MoveNext()
        {
            Row.AssertNotDisposed();

            if (NextIndex >= Row.Width)
            {
                Current = null;
                return(false);
            }

            Current = Row.GetCellAt(NextIndex);

            NextIndex++;

            return(true);
        }
예제 #2
0
        public IEnumerator GetEnumerator()
        {
            Row.AssertNotDisposed();

            return(new DynamicRowEnumeratorNonGeneric(Row));
        }