¡@

Home 

c# Programming Glossary: profiler

Any decent C# profilers out there? [closed]

http://stackoverflow.com/questions/10644/any-decent-c-sharp-profilers-out-there

decent C# profilers out there closed I urgently need a C# profiler. Although I'm.. decent C# profilers out there closed I urgently need a C# profiler. Although I'm not averse to paying for one something which is.. a purchase order. Any recommendations c# .net profiling profiler share improve this question You can try the following nprof..

Determine the number of lines within a text file

http://stackoverflow.com/questions/119559/determine-the-number-of-lines-within-a-text-file

Cannot find the memory leak

http://stackoverflow.com/questions/13355496/cannot-find-the-memory-leak

pin point it. I am having a hard time finding it. Memory profiler shows that I have many instances of a string and I can't interpret..

ASP.NET Website Slow Performance on production server

http://stackoverflow.com/questions/1340218/asp-net-website-slow-performance-on-production-server

on the server. I've monitored the SQL server with the profiler and the query being run on the page taking 400ms on the server..

Tips for optimizing C#/.NET programs [closed]

http://stackoverflow.com/questions/2473666/tips-for-optimizing-c-net-programs

show that you are not meeting your goals use tools such as profilers to figure out why. Optimize the heck out of what the profiler.. to figure out why. Optimize the heck out of what the profiler identifies as the worst performing subsystem. Keep profiling..

How Moles Isolation framework is implemented?

http://stackoverflow.com/questions/3021797/how-moles-isolation-framework-is-implemented

share improve this question Moles implements a CLR profiler in particular the ICorProfilerCallback interface that allows..

How much memory does a C#/.NET object use?

http://stackoverflow.com/questions/426396/how-much-memory-does-a-c-net-object-use

share improve this question You could use a memory profiler like .NET Memory Profiler http memprofiler.com or CLR Profiler..

When is optimization premature? [closed]

http://stackoverflow.com/questions/4832642/when-is-optimization-premature

about optimizations that aren't too obvious I just use a profiler later if I need to. Another technique I just run my program..

Best .NET memory and performance profiler? [closed]

http://stackoverflow.com/questions/49912/best-net-memory-and-performance-profiler

.NET memory and performance profiler closed We are using Jetbrains ' dotTrace . What other profiling.. profiling C# Windows Forms applications c# .net profiling profiler share improve this question No. I have tried pretty much.. this question No. I have tried pretty much every .NET profiler on the market ANTS vTune OptimizeIt DevPartner YourKit and in..

how to replace characters in a array quickly

http://stackoverflow.com/questions/5261858/how-to-replace-characters-in-a-array-quickly

buffer i buffer i ' ' return tmp according to my profiler the code is spending 88 of its time in if badChars.Contains..

Mocking Static methods using Rhino.Mocks

http://stackoverflow.com/questions/540239/mocking-static-methods-using-rhino-mocks

possible. TypeMock can do this because it utilizes the CLR profiler to intercept and redirect calls. RhinoMocks NMock and Moq cannot.. because these libraries are simpler they don't use the CLR profiler APIs. They are simpler in that they use proxies to intercept..

Function profiling woes - Visual Studio 2010 Ultimate

http://stackoverflow.com/questions/5525758/function-profiling-woes-visual-studio-2010-ultimate

the fact the function was at the top of the stack when the profiler's driver captured the stack this occurs at very small timed.. most expensive stack didn't have anything from what the profiler considers to be your code other than Main . The example from.. Symbol serialization is an optimization that allows the profiler to load symbol information directly from the report file on..

What is the fastest way to convert a float[] to a byte[]?

http://stackoverflow.com/questions/619041/what-is-the-fastest-way-to-convert-a-float-to-a-byte

premature optimization I have benchmarked this using ANTS profiler before I optimized. There was a significant speed increase because..

Is String.Format as efficient as StringBuilder

http://stackoverflow.com/questions/6785/is-string-format-as-efficient-as-stringbuilder

readability. If you suspect a perf bottleneck then stick a profiler on your code and see where it really is. share improve this..

Is there a performance hit for creating Extension methods that operate off the object type?

http://stackoverflow.com/questions/7652118/is-there-a-performance-hit-for-creating-extension-methods-that-operate-off-the-o

see if you met your goal. If you did great. If not use a profiler find the slowest thing and fix it. But neither question is the..

Any decent C# profilers out there? [closed]

http://stackoverflow.com/questions/10644/any-decent-c-sharp-profilers-out-there

free but kinda old ProfileSharp open source .Net Memory Profiler really good for memory leaks there's a trial version Edit Nprof..

How can I debug SessionStateModule/REQUEST_AQUIRE_STATE taking > 100 seconds on half of my requests?

http://stackoverflow.com/questions/11250167/how-can-i-debug-sessionstatemodule-request-aquire-state-taking-100-seconds-on

100 seconds then the page completes successfully . ANTS Profiler reports all the time as Awaiting synchronisation and gives a..

Fluent nHibernate: one-to-many relationship Issue

http://stackoverflow.com/questions/1454293/fluent-nhibernate-one-to-many-relationship-issue

number of institutions is 0. I have checked in the SQL Profiler and the institutions are saved in the database but their InstallationId..

How can I prevent CompileAssemblyFromSource from leaking memory?

http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory

System.GC.GetTotalMemory true and Red Gate ANTS Memory Profiler to measure the growth about 600 bytes with the sample code ...

Memory Leaks in C# WPF

http://stackoverflow.com/questions/227909/memory-leaks-in-c-sharp-wpf

used in the past to resolve them I am using .NET Memory Profiler and I've found that one of my huge main objects is staying in..

What SQL is being sent from a SqlCommand object

http://stackoverflow.com/questions/2611446/what-sql-is-being-sent-from-a-sqlcommand-object

improve this question You need to use the SQL Server Profiler to watch what comes from the application. I believe it can show..

TextBox.Text Leaking Memory in WPF Application

http://stackoverflow.com/questions/3336908/textbox-text-leaking-memory-in-wpf-application

hours it crashes with an OutOfMemoryExeption. I ran CLRProfiler on it and found that the leak is occurring in the TextBox that.. purpose that I CAN post. When run through the CLR Profiler which DRASTICALLY reduces performance the following identical..

Using DateTime in a SqlParameter for Stored Procedure, format error

http://stackoverflow.com/questions/425870/using-datetime-in-a-sqlparameter-for-stored-procedure-format-error

C# I get an error about the date format. When I run SQL Profiler to watch the calls I then copy paste the exec call to see what's.. Results in this value in the exec call as seen in the SQL Profiler @Date_Of_Birth ''2009 01 08 15 08 21 813'' If I modify this..

How much memory does a C#/.NET object use?

http://stackoverflow.com/questions/426396/how-much-memory-does-a-c-net-object-use

You could use a memory profiler like .NET Memory Profiler http memprofiler.com or CLR Profiler free share improve this..

Best .NET memory and performance profiler? [closed]

http://stackoverflow.com/questions/49912/best-net-memory-and-performance-profiler

application is relatively light I could recommend ANTS Profiler . Its line by line stats are sometimes quite useful but they..

Error in Updating a table using datetime as parameter in Stored procedure

http://stackoverflow.com/questions/5049173/error-in-updating-a-table-using-datetime-as-parameter-in-stored-procedure

improve this question If you have the tool use the SQL Profiler to actually see the exact SQL string that is passed to the database...

Convert DataTable to generic List?

http://stackoverflow.com/questions/545328/convert-datatable-to-generic-list

page that uses it it grows. We are currently getting ANTS Profiler to give us more details. c# .net generics datatable share..

Good Profiler for C# 2010? [closed]

http://stackoverflow.com/questions/5642569/good-profiler-for-c-sharp-2010

Profiler for C# 2010 closed I love the profiler for Visual Studio Ultimate.. profiling profiler share improve this question Ants Profiler is very good http www.red gate.com products dotnet development..

SqlException about UNION, INTERSECT and EXCEPT

http://stackoverflow.com/questions/650847/sqlexception-about-union-intersect-and-except

with the generated SQL you should try to use either an SQL Profiler or use this code for DebuggerWritter class to write the SQL..

String.Replace() vs. StringBuilder.Replace()

http://stackoverflow.com/questions/6524528/string-replace-vs-stringbuilder-replace

replacement share improve this question Using RedGate Profiler using the following code class Program static string data abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz..

C# Call Graph Generation Tool

http://stackoverflow.com/questions/793685/c-sharp-call-graph-generation-tool

through the tubes people say that .NET Reflector and CLR Profiler have this functionality. Any experience with these c# .net..

Entity Framework 4.1. Most efficient way to get multiple entities by primary key?

http://stackoverflow.com/questions/8107439/entity-framework-4-1-most-efficient-way-to-get-multiple-entities-by-primary-key

SQL as shown below . For both tests it can be seen in SQL Profiler that the SQL query arrives at the database very late. I didn't..