Basically, the question is: Do the Exceptions in C# affect the performance a lot? Is it better to avoid Exceptions rethrow? If i generate an exception in my code, does it a
Exceptions in .NET do affect performance. This is the reason why they should be used only in exceptional cases.