Vertaling van "MoveNext a" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Si le dernier appel à MoveNext a retourné false, Current n'est pas défini.
If the last call to MoveNext returned false, calling Current throws an exception.
Si le dernier appel à MoveNext a retourné false, Current n'est pas défini.
If the last call to MoveNext returned false, Current is undefined.
Andere resultaten
Lorsque l'énumérateur est à cette position, les appels suivants à MoveNext retournent également false.
When the enumerator is at this position, subsequent calls to MoveNext also return false.
Lorsque l'instance attendue se termine finalement, la méthode MoveNext est appelée à nouveau et reprend l'exécution de la méthode au point où elle avait été suspendue précédemment.
When the awaited instance eventually completes, the MoveNext method is invoked again and jumps to the point in the method where execution previously left off.
Retourne l'une des valeurs d'énumération depuis MoveNext().
This will return one of the enumeration values from MoveNext().
Il est également important de noter la méthode « MoveNext », qui fait avancer le pointeur d'enregistrement.
It's also important to note the "MoveNext" method, which advances the record pointer.
Pour soutenir cette opération, l'IEnumerator est raillé avec la méthode de MoveNext ().
To support this operation, the IEnumerator is quipped with the MoveNext() method.
Par conséquent, vous devez appeler MoveNext pour avancer l'énumérateur au premier élément de la collection avant la lecture de la valeur de Current.
Therefore, you must call the MoveNext method to advance the enumerator to the first element of the collection before reading the value of Current.
Si MoveNext passe la fin de la collection, l'énumérateur est positionné après le dernier élément de la collection et MoveNext retourne false.
If MoveNext passes the end of the collection, the enumerator is positioned after the last element in the collection and MoveNext returns false.
Retourne l'une des valeurs d'énumération depuis MoveNext(). Cette page est-elle utile ?
Iterators that use containment to control a nested iterator return one of the values in this enumeration.
Pour faire défiler la base de données, commencez par placer le pointeur d'enregistrement jusqu'au premier enregistrement, puis mis en place un processus en boucle pour parcourir la base de données MoveNext Loop
To step through the database, first position the record pointer to the first record, then set up a looping process to cycle through the database like so