0 votes
in C Sharp by
What is the difference between “throw ex” and “throw” methods in C#?

1 Answer

0 votes
by
“throw ex” will replace the stack trace of the exception with stack trace info of re throw point.

“throw” will preserve the original stack trace info.

Related questions

+1 vote
asked May 6, 2020 in C Sharp by SakshiSharma
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...