示例#1
0
            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);
                }
            }
示例#2
0
			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;
				}
			}