| Thread | Last Post | Replies |
|
| Object Equality | 27 Nov 2003 17:37 GMT | 7 |
Currently I am responsible for writing the C# coding standards document for a client and I have been doing some investigations with ildasm to establish some additional best practices. When using either the C# equality operator '==' or the object.Equals()
|
| What would be a faster alternative to boxing/unboxing? | 27 Nov 2003 16:32 GMT | 42 |
I have a situation where an app writes data of various types (primitives and objects) into a single dimensional array of objects. (This array eventually becomes a row in a data table, but that's another story.) The data is written once and then read many times. Each primitive read ...
|
| Performance question regarding reflection | 26 Nov 2003 12:51 GMT | 6 |
In our project, we used XSD.exe to create the classes, not dataset, which represent the data entities from xsd files for passing among the tiers. We want to set the default value for all numeric fields to be -1 in our data entity classes. I know this can be done by setting the ...
|
| AverageTimer32 | 26 Nov 2003 01:22 GMT | 4 |
All, I am not sure if this is already a known issue. When I calculate the time elapse for a partular activity using AverageTimer32 type perfmon counter, should I use:
|
| thread pooling | 23 Nov 2003 10:20 GMT | 2 |
Hi.. I created a .NET windows service that transfers data from and to different data sources. I would like to use thread pooling to add the flexibility to run transfers simulteneously but want to be able to control what transfers go into what threads. Don't know how thread ...
|
| COM And .NET Objects Calling Interop Assembly | 21 Nov 2003 18:59 GMT | 1 |
I've a migration scenario where I rewrite a COM object to an .NET interop assembly (so, still callable from COM). What is the impact if I continue my step-by-step migration and have a scenario where my .NET objects start to call .NET interop assemblies? Is there an overhead ...
|
| CLR Profiler v2 & ASP.NET: doesn't work | 21 Nov 2003 17:59 GMT | 5 |
The profiler just sits forever at "Waiting for ASP.NET worker process to start". I have verified it places the environment registry vars in their correct place. However when I navigate to my ASP.NET app and aspnet_wp.exe starts up
|
| Performance of properties vs method calls | 20 Nov 2003 18:34 GMT | 1 |
Since small method calls are inlined when the IL size is 32 or less. Take for example.. // Method (inlined) public bool getVal()
|
| Memory usage of a .NET windows forms | 20 Nov 2003 08:39 GMT | 2 |
I have just released a new program within my company. It is a windows forms application with a webservice at the backend. I'm getting questions about the memory usage of the
|
| Sorting a Directory by Modified Date? | 20 Nov 2003 02:53 GMT | 5 |
Every method I can think of for sorting a directory by file modified date is very slow, as it appears that the .NET libraries need to do an Open & GetInfo on every single file entry. I've tried building an array of .FileModified dates to use for the sort, and
|
| Fast Sorting | 19 Nov 2003 20:00 GMT | 3 |
Does anyone know when there will be a faster implementation of Sorting in c#, because sorting of only 300 Strings is extremly slow. And implementing sorting for objects via CompareTo is also much too
|
| System.Diagnostics.PerformanceCounter | 19 Nov 2003 19:47 GMT | 10 |
Does anyone have a good reference to the inner workings of the PerformanceCounter class and its related classes? Specifically, I'd like to know how a PerformanceCounter object connects to a remote machine to retrieve data. Is
|
| Performance Counter reference guide | 19 Nov 2003 17:14 GMT | 2 |
Can anyone point me to a reference of applications and their Windows NT Performance Counters? Specifically, I'm trying to compile a list of products and their related counters so that I can say, "So you
|
| VB6 v VB.NET performance | 19 Nov 2003 09:39 GMT | 2 |
We are currently looking at upgrading a large web app on ASP Clasic & VB6, to .NET. To justify the spend, we need some indication of expected performance increases if we do a straight port. I've seen figures indicating ASP.NET
|
| Performance counter viewer | 19 Nov 2003 03:59 GMT | 2 |
Has anyone written or come across a windows form control for viewing performance monitor data? Thanks.
|