Tag: rethrow

How to rethrow InnnerException without losing Stack Trace in C# ?

Microsoft .NET Framework 4.5  introduced the ExceptionDispatchInfo class which lets the developers to capture an exception and rethrow it without losing the stack trace. How to rethrow InnnerException without losing Stack Trace in C# ? Below is a sample code snippet demonstrating the usage of this class.

How to Rethrow an Exception in C# ?

There are times when you want to handle the exception and then pass it to the higher level . Below is a sample code snippet demonstrating how to Rethrow an exception in C# . How to Rethrow an Exception in C# ?