Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VB.NET Application Performance Test

Currently I'm writing a VB.NET app and it's getting big, resulting in its become very slow.

Is there any application (or plug in) that can test the performance in seconds? I mean, when I click a button and it displays a product, I want to know exactly how long it is gonna take.

like image 659
user845768 Avatar asked Jan 20 '23 05:01

user845768


1 Answers

Visual Studio (certain versions) has a built-in code profiler:

  • Find Application Bottlenecks with Visual Studio Profiler

  • Beginners Guide to Performance Profiling

  • Analyzing Application Performance by Using Profiling Tools

  • Visual Studio Profiler Team Blog

There is also EqaTec's free code profiler (works well).

[Note: Big does not necessarily mean slow. Big slowdowns are often caused by code that has a complexity of O(N^2) or greater...]

like image 151
Mitch Wheat Avatar answered Jan 29 '23 08:01

Mitch Wheat