Forum Discussion

vthomeschoolmom's avatar
vthomeschoolmom
Super Contributor
6 years ago
Solved

Iterator IsEOF returning true ... I am certain I am doing something dumb

I have this code which is trying to loop through the rows of a table variable. var checkStaff = KeywordTests.InstructorInquirySmoke.Variables.Staff; var iterator = checkStaff.Iterator; var sta...
  • AlexKaras's avatar
    6 years ago

    Hi,

     

    According to the documentation and the code samples, .IsEOF() is a method, not a property.

    Have you tried

    while(!iterator.IsEOF())

    instead of your

    while(!iterator.IsEOF)

    ? Does it help?