Whats the idea?
Uniwares_AS
Posts: 168
While browsing a protected assembly I just found that SA created the following construct, whats the idea of that?
public static void xx() { try { try { xx3.xx(); } catch (Exception) { } } catch (Exception exception2) { UnhandledException.xx(exception2); throw; } }
Comments
The outer one is applied to all methods (it isn't worth checking for cases like this where it has no effect) to capture variables for the error reporting.
Developer,
Red Gate .NET Tools
Seems pretty weird to me.