I\'m getting a \"Unreachable code detected\" message in Visual Studio at the point i++ in my code below. Can you spot what I\'ve done wrong?
try { RegistryKe
The problem is that because you break; in the loop with no chance of it doing anything else, the increment of i (i++) will never be reached.
break;
i++