on Welcher Dosenöffner ist gut und solide? · c/fragfeddit · 2 pts · 2yDen von WMF hab ich auch. Funktioniert super, versifft nicht, passt.
on Strange Ox Act 1 Easter Egg · c/baldurs_gate_3 · 9 pts · 2yYou'll be able to meet him again later in the game and might learn something more about what's going on with that ox.
on Brilliant exception handling I found in an app i had to work on · c/programmerhumor · 13 pts · 3yIf this is C# (and it looks like it is), this leads to you losing the original stack trace up until this point. The correct way to do this in C# is to just throw; after you're done with whatever you wanted to do in the catch.
Den von WMF hab ich auch. Funktioniert super, versifft nicht, passt.
You'll be able to meet him again later in the game and might learn something more about what's going on with that ox.
If this is C# (and it looks like it is), this leads to you losing the original stack trace up until this point.
The correct way to do this in C# is to just
throw;after you're done with whatever you wanted to do in thecatch.