Uwe Keim
Check me out on the web at Magerquark.de.
CodeProject member #235 :-)
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Eric Gunnerson - How do you design new features for C#?
May 07, 2004 at 12:29 AMSo these "checked exceptions" and your decision to avoid them is a good thing, I guess. But this would not make my original suggestion unusable, if I'm understanding correctly...
I do like exceptions, correct
In detail, I have problems to get the call stack information of the original thrown exception when installing a global exception handler in a C# application by implementing an UnhandledExceptionEventHandler and a ThreadExceptionEventHandler. Never been able to get this working correctly. Probably it is my fault, but since you are already asking, the Framework could help me more on this issue to avoid the mistakes I'm now making
Similar things apply when centrally catching exceptions in ASP.NET applications. But I'm trying to advance and improve!
Thanks for your feedback!
Uwe
Eric Gunnerson - How do you design new features for C#?
May 05, 2004 at 11:20 PMOr am I wrong?
Eric Gunnerson - How do you design new features for C#?
May 05, 2004 at 1:40 AMThis would be useful if the catcher can handle and fix/resolve the cause of the exception and then "reverse throw" the exception back where it was thrown and continue as if the exception never had happened.
Such a feature would be handy in C# as well, I guess