argument variable

  1. R

    Wish Sub argument variable repeated in body of the Sub

    Possibly this could/should be a warning in the IDE as it can cause a bug that can be hard to spot. For example we have this code: Sub AddToListItems(lst As List, iAdd As Int) As List Dim i As Int Dim lst As List For i = 0 To lst.Size - 1 lst.Set(i, lst.Get(i) + iAdd)...
Top