C# Training: – Difference between “Throw” and “Throw ex”?

Recently I uploaded some C# training material which helps you to learn C# in 60 days, its free, if interested you can get from C# training for freshers . By seeing these videos one of the fresher’s who was learning c# asked us what’s the difference between “Throw” and “Throw ex”.

“Throw” propagates the full stack information to the caller, while “Throw ex” excludes stack information from the point where you called “Throw ex”.

For instance let’s say you have a “Main” method which calls “Method2” and “Method2” calls “Method1”. Now in “Method2” if you handle exception by using just “Throw”, it will propagate the complete stack error to the main method.

If you add “ex” i.e. if you use “Throw ex” it will propagate stack information only from “Method2”.

You can download the sample code from and see the difference by changing “Throw” to “Throw ex” and vice versa to see the difference.

You can also see a sample video for the same as follows: -


There is one more very much connected questions where C# developers are confused C# interview questions: – What is exception bubbling in C#? which I faced in a recent C# interview at Accenture.

About these ads

About c# and .NET Interview questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview.
This entry was posted in .Net Interview Questions, C# interview questions, Csharp interview questions, programming interview questions, Throw, Throw ex and tagged , , , , , . Bookmark the permalink.

One Response to C# Training: – Difference between “Throw” and “Throw ex”?

  1. sri says:

    Good….. Very Nice Concept………

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s