Got this code - basically creating a LIST(OF) some class I've got. Later on in code I will be adding to this _RequestList (as shown).
If later on I do a FOR EACH - will the order always be the same - even after I add more and more items?
Code:
Private _RequestList As New List(Of _dcxRequest)
Private Class _dcxRequest
Public SearchText As dcxST
Public SearchBit As Integer
.
.
.
End Class
.
.
.
_RequestList.Add(New _dcxRequest(st, sl, i))Code:
For Each dr As _dcxRequest In drl
.
.
. do some work here - am I always getting DR objects in the same order??
.
.
Next