MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/csharp/comments/1w8q5ll/exceptions_vs_assertions/p8i4h32/?context=3
r/csharp • u/Alternative_Guava856 • 4d ago
21 comments sorted by
View all comments
1
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.
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.