Tools for code performance in .Net and C #

For example, you know that the foreach loop is heavy. And if we use to cycle better.

What tools can help me write code with the best C Sharp network performance and test my code for this?

Please help me

Edit ::

I want tools to convert my code to better performance code. For example, when I compile my C Sharp code into IL code, these tools convert the foreach loop into a loop for best performance.

+3
source share
4 answers

- . , . , . Visual Studio 2010 ( , Professional ) . Red-Gate ANT JetBrain dotTrace.

+2

The required tool is called Profiler. I like dotTrace Profiler (Google it). btw, foreach loop is not heavy itself.

+1
source

Source: https://habr.com/ru/post/1742088/


All Articles