Hi,
I have something to convert to C# as it is.
Legacy Code
LocalCursorTable
LocalCursorTable.Movefirst
Do While not EOF
if condition passed then
-- do something
LocalCursorTable.Delete (Delete record from local cursor )
endif
LocalCursorTable.MoveNext
Enddo
After End of iteration LocalCursorTable should not have records which r deleted in above loop.
Any advise/suggestion how to achive this in C# datatable.
Regards
Shehzad