Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tools For Code Performance in .Net And C# [closed]

Tags:

performance

c#

For Example You know foreach loop is heavy And if we use for loop is Better.

What Tools Can Help me to Write Code With Best Performance In C Sharp net,And Check My Code for this?

Please Help me

Edit ::

I Want A Tools To Convert my Code To Best Performance Code.For Example When I Compile My C Sharp Code To IL Code,This Tools Convert foreach loop to for loop For Best Performance.

like image 271
Hossein Moradinia Avatar asked Sep 16 '25 16:09

Hossein Moradinia


1 Answers

Redgate's performance profiler is a great tool for this, which has a free 14-day trial.

Jetbrain's profiler is also very good.

like image 136
PatrickJ Avatar answered Sep 19 '25 06:09

PatrickJ