J
James Jensen
I ran into a snippet of code that uses a FOR EACH loop to step through
the rows in a Dataset.Table object. I understand that the FOR EACH
statement implements the MoveNext function of the IEnumerator
interface of the InternalDataCollectionBase object.
I was wondering if anyone knew whether or not the iterator in this
case uses a certain hashing algorithm? The table object in question
is filled via a stored procedure that returns its data unordered.
Could it be that the data comes out from the iterator in the same
order that it was filled?
the rows in a Dataset.Table object. I understand that the FOR EACH
statement implements the MoveNext function of the IEnumerator
interface of the InternalDataCollectionBase object.
I was wondering if anyone knew whether or not the iterator in this
case uses a certain hashing algorithm? The table object in question
is filled via a stored procedure that returns its data unordered.
Could it be that the data comes out from the iterator in the same
order that it was filled?