Stories recently tagged with 'Profiling'

DateTime.Now Causes Boxing(blog.liranchen.com)

submitted by lirancliranc(190) 1 year, 9 months ago

Have you known that every time you call DateTime.Now the BCL causes a dynamic memory allocation due to unnecessary boxing? This post dives into the implementation of the property, explain why this boxing occurs, and what can we do to in order to avoid id read more...

add a comment |category: |Views: 14

tags: another

Accurate method timing helper class(blog.activa.be)

submitted by activaactiva(2340) 4 years, 2 months ago

How many times have you written some timing code around a method call? If the answer is never, move on, skip this article... For timing purposes, I always use a simple "TimeRunner" class that allows you to accurately measure the time it takes to execute a specific method. A kind of "poor man's profiler". read more...

1 comment |category: |Views: 14

tags: another

In-Code Profiling with C# and log4net(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 7 months ago

There are many tools that can be used for profiling software. These tools are a great enrichment for our job, but sometimes they are oversized. Sometimes, you need a small solution for a particular piece of code. If you find yourself at this point, I will show you a solution here. read more...

add a comment |category: |Views: 357

tags: another

Profiling .NET Applications(thinkersroom.com)

submitted by GandalfGandalf(465) 4 years, 7 months ago

A guide with screen shots illustrating how to identify and eliminate bottlenecks in a .NET application using a profiler read more...

add a comment |category: |Views: 20

tags: another