If Indexing Then Loop
-
Found this in production code. Variable names changed to protect the innocent:
For i As Integer = 0 To 0
Dim lb As LinkButton = GetLinkButton(i)
' Do stuff with lb...
NextFuture proofing the code?
-
Found this in production code. Variable names changed to protect the innocent:
For i As Integer = 0 To 0
Dim lb As LinkButton = GetLinkButton(i)
' Do stuff with lb...
NextFuture proofing the code?
Scalablility :~
-
Found this in production code. Variable names changed to protect the innocent:
For i As Integer = 0 To 0
Dim lb As LinkButton = GetLinkButton(i)
' Do stuff with lb...
NextFuture proofing the code?
Optimization... reduce the number of iterations until you achieve reasonable performantcy*. * I just made that up.
-
Optimization... reduce the number of iterations until you achieve reasonable performantcy*. * I just made that up.