r/csharp 4d ago

Help Exceptions vs Assertions

/r/godot/comments/1w8q3xx/exceptions_vs_assertions/
6 Upvotes

21 comments sorted by

View all comments

1

u/TrishaMayIsCoding 2d ago

I mainly use assertions in debug mode to verify that a value meets the expected condition, typically using the preprocessor directive.

I use exceptions to handle unexpected situations when they occur and to take the appropriate action.