Search Results

0
votes

Continue Considered Harmful?

I believe the bottom line argument against continue is that it makes it harder to PROVE that the code is correct. This is prove in the mathematical sense. But it probably doesn't matter to you beca …
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 …
0
votes

Possible to extend the String class in .net

You can also use an adapter pattern to add additional functionality. You can do operator overloading to make it feel like the built in string. Of course this won't be automatic for existing uses of …