public bool MoveNext() { //increment index m_index++; m_entry = m_parent.GetEntry(); //if there is a record at that position if (m_entry != null) { return(true); } else { //no more records return(false); } }
public bool MoveNext() { //increment index m_index++; m_entry = m_parent.GetEntry(); //if there is a record at that position if(m_entry!=null) { return true; } else { //no more records return false; } }