Using Exceptions throwing in C#. Does it affect a performance?

后端 未结 8 925
余生分开走
余生分开走 2021-01-13 01:58

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

8条回答
  •  耶瑟儿~
    2021-01-13 02:42

    If you're worried about exception performance, you're using them wrong.

    But yes, exceptions do affect performance.

提交回复
热议问题