| Thread | Last Post | Replies |
|
| asp.net 2.0, temporary assembly generation mechanism, and application restarting | 30 May 2006 15:36 GMT | 4 |
I have a question regarding the automatic restarting of asp.net web applications. If I modify a aspx file, it is my understanding that the runtime will generate a new assembly based on it, and place it in the temporary
|
| Cleaning up COM Objects | 22 May 2006 20:41 GMT | 1 |
If I create several COM objects in a loop but point to the same variable, do I need to clean up each object or only one at the end. It works both ways but I am not sure if the first method actually cleans up all resources. Here is what I mean
|
| Perf & Thread ??? | 22 May 2006 16:30 GMT | 1 |
Please why when I write : while(1){ Console.writeln("date= {0:HH:mm:ss.ffff}", DateTime.Now); System.Threadind.Thread.Sleep(40);
|
| Bug in System.Diagnostics// PerformanceCounters | 17 May 2006 02:48 GMT | 10 |
I have found an error in the System.Diagnostics namespace concerning performance counters. If the performance monitor is attached is monitoring a category, the category is deleted and new performance counters are added to this category,
|
| Excel VSTO Listobject control databinding performance problem | 15 May 2006 02:52 GMT | 4 |
I have made a test with VSTO Excel databinding using listobject binded with a dataview. This dataview/datatable is created by my code and upadated in memory when I receive some notification via my mesage oriented middleware, to simulate update of some financial market data (esample: ...
|
| Local variables Vs Member Variables | 13 May 2006 00:40 GMT | 3 |
I am writting a performance critical application and want to know about following: A method is called at every mouse move or says method calls frequently. The method is like this
|
| file write corruption | 11 May 2006 04:20 GMT | 3 |
I have an xml document loaded into memory that get periodically written to disk. When the file gets written, I put a lock on the object around a streamwriter.Write call to prevent other threads from attempting to do any reads or writes to the file. Periodically, the file will ...
|
| Testing WinForm/smart client application with many users | 10 May 2006 21:29 GMT | 1 |
I have just finished the development of a .Net 2.0 WinForm application, that connects to Sql Server 2000. This application will eventually work with 100 users at a time. So before releasing the app to the users, I would like to test how the
|
| Need to set PerformanceCounter.RawValue to a double value | 08 May 2006 21:17 GMT | 2 |
Is it possible to set the double (or perhaps *calculated*) values of a Windows NT performance counter? We use the PerformanceCounter.RawValue property to set counters, such as the total number of requests on a certain application. However, PerformanceCounter.RawValue is of type ...
|
| Profiling Tool | 08 May 2006 12:16 GMT | 6 |
I would like to profile an application using some tool in such a way that i dont want to add any probe code in the application. And I am also interested in knowing the lines of codes that are hit/run most of the times and also the lines of code which took most time in execution.
|
| Performance / Profiling tools for ASP.NET applications | 08 May 2006 12:08 GMT | 5 |
We are currently looking into extending our development tools with good performance & profiling tools and I would like to ask all the readers for advice on what to use. Software vendors may contact me directly over e-mail IF (and only if) we're not added
|
| How to pre-compile dynamically generated methods? | 04 May 2006 15:20 GMT | 3 |
NGEN.EXE will precompile MSIL to native code; actually calling a method will compile the MSIL to native. Is there another way to do this? The application: an audio programming language, where the cost of the initial JIT compile in the pretty-darned-close-to-realtime thread is not ...
|
| ASP.NET 2.0 data-access classes : static methods, singletons | 02 May 2006 21:35 GMT | 2 |
I'm trying to determine the relative performance of three implementations of data-access classes in ASP.NET 2.0 : 1. non-singleton classes with non-static methods which must instantiate a class object (possibly multiple times) in each method
|
| array caching | 02 May 2006 15:03 GMT | 5 |
I am looking for C# code to store and retrieve a 2 dimensional array in the cache. I have seen code in this forum for caching arrays but ti does not work. I'd be immensely grateful if anyone has an example.
|
| creating an IPEndpoint very slow on xp pro | 02 May 2006 11:23 GMT | 1 |
Dim udpClient As New UdpClient() Dim IPHost As IPHostEntry = Dns.GetHostEntry(ipstring) Dim ipAddress As IPAddress = IPHost.AddressList(0) Dim remoteEP As New IPEndPoint(IPAddress, 42500)
|