[Solved] Read string array with an int selector C# [closed]
[ad_1] The problem is likely that you’re starting your counter variables at 1, then using that as an index into the array, but array’s are zero-based in c# so you’re essentially skipping the first item at 0 and then trying to access an item that’s out of the bounds of the array. It’s also not … Read more