| Thread | Last Post | Replies |
|
| Aspnet_wp will not recycle | 30 Nov 2005 19:20 GMT | 1 |
Hi, I have a problem with a windows 2000 server running version 1.1 of the .Net framework. The symptom is that memory usage by the aspnet_wp process gradually increases until the web application I'm running becomes
|
| Bytearray comparsion taking waaay too long | 30 Nov 2005 14:29 GMT | 3 |
To compare two bytearrays I wrote the following code. Please note that I've allready found another way to solve this, so I don't need new code. I'm just wondering why this code is so incredibly slow: private void button1_Click(object sender, EventArgs e)
|
| Jitt'ing questioned | 28 Nov 2005 15:37 GMT | 2 |
Does anyone know if and when the following line of code will be inlined? If it will be inlined can someone tell me how I can predict it for myself? XmlTextWriter writer = new XmlTextWriter(new MemoryStream(), Encoding.UTF8); Thanks alot.
|
| Static member | 28 Nov 2005 02:43 GMT | 2 |
I declare a dataset obejct as static type in one class, such as: class A{ private static dataset ds; public void process(){
|
| Threading Question | 25 Nov 2005 15:27 GMT | 5 |
I have a simple thread Thread myThread=new Thread(new ThreadStart(foo)); ..... void foo()
|
| Shared Method and Thread Safe | 24 Nov 2005 17:47 GMT | 3 |
I have a shared/static method that access an object from the AppDomain. If the object is not cached, the method creates an object reference and caches the reference into the Appdomain. Multiple threads will use this method. I would like to make the method thread-safe by ...
|
| How to get performance of a DLL.. | 22 Nov 2005 21:01 GMT | 2 |
Hi, I have a .Net DLL that has a method - CallDLL() I want to monitor the time taken for each call made to this DLL. Hence I have added an averagetime32 and its base in the CallDLLs first(first) and
|
| .NET CF Drawing Problems | 22 Nov 2005 05:53 GMT | 3 |
Since DirectX are implemented only in mobile 5.0 and I must develop for 2003, I started to create a 3d engine on my own, but I get stuck immediatly for performance problems. I created dif function that draw a line using a Bresenham algorithm on a
|
| dotNET remoting Performance | 21 Nov 2005 18:47 GMT | 1 |
Hi all, Ok, first I am new to dotNET so bear with me, I am creating a remotin host, client app which would potentially get alot of traffic, say 200 hits a second, the host is seraching SQL and building an XML REPLY.
|
| 1.1 perf versus 2.0 | 21 Nov 2005 03:57 GMT | 8 |
Now that 2.0 has gone gold, how are people finding performance 1.1 versus 2.0? I know it's early days. I have a little test app and was disappointed to find that GDI+ perf and memory consumption, in this app, seems pretty much
|
| Problem getting ExecutablePaths | 20 Nov 2005 15:33 GMT | 4 |
I have a C# application which uses WMI to retrieve the ExecutablePath for each running process on a specific computer (might be local or remote). The problem is that some ExecutablePaths for some running processes (excluding the System and Idle processes which do not have ...
|
| Asynch HttpWebRequests..best technique? | 17 Nov 2005 15:13 GMT | 2 |
I'm trying to determine what is the best technique to execute asynchronous httpwebrequests. Two methods I see are using the BeginGetResponse at (http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/howto /samples/net/ASPXNet/webrequestasync ...
|
| Performance Monitor creation in Service - Times Out. | 12 Nov 2005 11:41 GMT | 1 |
I have the appended code in my .NET service application. I basically want the performance monitors to automatically be created on the first use of this service, and if it is upgraded the new counters will be added.
|
| Multithreaded dataprocessing too slow... Help! | 11 Nov 2005 17:25 GMT | 3 |
Hi! I need help with identifying a new way to process report data that currently is too slow to meet our production goals. In short, we have data in Oracle database where we need to process it in
|
| Scope of variables within a FOR EACH ... NEXT LOOP | 10 Nov 2005 17:36 GMT | 2 |
I know for a fact that declaring vars inside a for loop is valid. Reason for doing this: 1. Ensures the variables are scoped out outside the block 2. Ensures vars are scoped out after each iteration
|