You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line.Substring(numberStart, index - numberStart) should be line[numberStart:index] (a practical solution, since there is no prior knowledge of the implementation, is to make it line[numberStart:index - numberStart + numberStart])
The text was updated successfully, but these errors were encountered:
line.Substring(numberStart, index - numberStart)
should beline[numberStart:index]
(a practical solution, since there is no prior knowledge of the implementation, is to make itline[numberStart:index - numberStart + numberStart]
)The text was updated successfully, but these errors were encountered: