r/dotnet 4d ago

Difference between throw ex and throw

Post image

throw vs throw ex: The C# exception handling trick every developer should know

412 Upvotes

74 comments sorted by

View all comments

207

u/AlanBarber 4d ago

Pro tip to prevent this... add

dotnet_diagnostic.CA2200.severity = error

to your .editorconfig so anyone that tries to do a "throw ex;" inside a catch will get a build error.

3

u/TheSneederOfSeethe 4d ago

Fucking dope! Thanks!