0

I am currently working on a C#/XAML application, I need to do performance profiling to figure out XAML bottlenecks. Any good profilers/tools available?

user1542794
  • 137
  • 1
  • 12

3 Answers3

1
  1. Visual Studio (Performance tools) download and How to do.
  2. RedGate Ants Profiler
  3. Telerik JustTrace

The last 2 are good ones, and not free

noobob
  • 532
  • 4
  • 12
1

PerfView is free tool that is used by the CLR performance team. It is specifically designed for profiling the performance of .NET applications and can do both CPU and memory (managed heap) investigations. A plus is that it doesn't require running an install on a machine to collect performance data. There is an awesome series of videos by Vance Morrison on using the tool.

Mike Zboray
  • 39,828
  • 3
  • 90
  • 122
0

what app are you developing, WPF, Silverlight or win8? Basiclly the profile tool inside Visual Studio is enough to figure out the bottlenecks.

Denny
  • 129
  • 7