Beispiel #1
0
        public IEnumerator <T> GetEnumerator()
        {
            for (int i = firstRecNo; (i <= lastRecNo); i++)
            {
                DbfRow row = table.GetRow(i);

                if (this.skipDeleted && row.deleted)
                {
                    continue;
                }

                yield return(row.Get <T>());
            }
        }