in Dot Net by

What is difference between the "throw" and "throw ex" in .NET?

1 Answer

0 votes
by

"Throw" statement preserves original error stack whereas "throw ex" have the stack trace from their throw point. It is always advised to use "throw" because it provides more accurate error information.

...