views:

148

answers:

2

I wonder, How exception handling mechanishm actualy works in .net?

Just want to know, what happens in runtime internally?

+4  A: 

Internally the CLR uses the Structured Exception Handling of Windows. See http://msdn.microsoft.com/en-us/library/ms680657(VS.85).aspx for more details.

You may also find the description in CLR via C# by Jeffrey Ricther useful.

Brian Rasmussen
+2  A: 

Take a look at this link

http://msdn.microsoft.com/en-us/library/6kzk0czb(VS.71).aspx

Oakcool