I don't like the fact that VB.NET is silently failing on an operation if something goes wrong:
Dim n(10) As String
n(11) = "blah"
I do not want to handle such situation with a Try/Catch/Finally, that would be an overkill. I will stumble over such situations while testing my application during development.
But the fact that VB.NET simply skips over this error is a bit annoying. Can I change the IDE so that it breaks in this line?
Thank you very much!