2
votes
C#: Try-catch every line of code without individual try-catch blocks
As someone mentioned, VB allows this. How about doing it the same way in C#? Enter trusty reflector:
This:
Sub Main()
On Error Resume Next
Dim i As Integer = 0
…
