| Thread | Last Post | Replies |
|
| Load and save ArrayList | 30 Jul 2003 23:45 GMT | 2 |
Hi NG How can I load and save a ArrayList with Strings with best Performance. Wich Methods are the best? In wich Format must I save the ArrayList for best Performance. I will handle a very large ArrayList of Strings and than search
|
| Internal implementation of SortedList | 30 Jul 2003 20:56 GMT | 1 |
I was looking for a sorted data structure in .Net that will be the equivalent of "set" or "map" from the C++ STL. I was wondering what kind of balanced trees was used for SortedList since the documentation does not provide details.
|
| error message | 25 Jul 2003 18:08 GMT | 1 |
When troubleshooting sending messages, net framework initialization using Windows 98SE, I receive the following message: C\Windows\Microsoft\Framework\v1.0.375 - mscorwks.dll
|
| flickering when changing both height and top | 25 Jul 2003 08:53 GMT | 1 |
I have a picturebox that can be resized at runtime and when both the height and the top change the control flickers. I am double buffering the control and using AllPaintingInWmPaint | DoubleBuffer | UserPaint but
|
| What is faster? DirectCast(myObj, Integer) or Convert.ToInt32(myObj) ? | 25 Jul 2003 07:50 GMT | 3 |
what has the better performance and what are you using? Dim myObj As Object = 70 a) Dim myInt As Integer = DirectCast(myObj, Integer) b) Dim myInt As Integer = Convert.ToInt32(myObj)
|
| Fast interprocess communication | 25 Jul 2003 05:09 GMT | 1 |
What is the fastest solution to exchange big data fast between two processes in .NET? Thanks in advance, Fabian Gebert
|
| Unmanaged <-> Managed | 24 Jul 2003 18:50 GMT | 2 |
Hi there!!! What is the fastest way to communicate between managed and unmanaged code? -- Vadym Stetsyak
|
| Pausing/sleeping an IO CompletionPort Thread | 16 Jul 2003 03:24 GMT | 1 |
I have a server program sits between another server and the client. My server is using Async Sockets with Begin/End Receive. Each EndReceive may provide data that will create many discrete outputs on the client system. (One EndReceive on the server contains data for
|
| Quake 2 on .NET | 15 Jul 2003 02:38 GMT | 2 |
Hi there, I thought I would send you guys a link to a .NET version of Q2, which is based on the original Q2 source http://www.vertigosoftware.com/Quake2.htm Some comments on it:
|
| Hashtable memory use? | 14 Jul 2003 22:43 GMT | 4 |
I have some large Hashtables, and they seem to be using a lot of memory. For example, a hashtable with ca 850,000 pairs, where both the keys and values are boxed ints, seems to take about 160 bytes/key. (All
|
| .NET speed issue | 12 Jul 2003 03:33 GMT | 8 |
We are a c/c++ shop which has converted our app from c++ to .NET using c#. In the .NET app, we have noticed a serious speed problem in the core calculations that we use for this .NET app.
|
| Debbugging help! (.NET 1.1 Framework Garbage Collection Problems) | 10 Jul 2003 20:30 GMT | 3 |
I need some help with debugging a "deadlock" in a production environment. I've managed to get a crash dump and have tried to analyzed it via WinDbg and SOS. Unfortunately, I am not skilled enough in debugging to pinpoint the exact problem; however, I have narrowed it
|
| VB functions compared to .NET methods | 09 Jul 2003 11:59 GMT | 1 |
I guess this is an FYI rather than a specific question... I've rewritten a process that transfers database data into a web page from ASP and a VB Scriptlet (using ADODB & MSXML2.ServerXMLHTTP) into .NET (using ADO.NET and HttpWebRequest).
|
| StringBuilder | 05 Jul 2003 07:34 GMT | 8 |
the article at http://msdn.microsoft.com/vstudio/using/understand/perf/default.aspx?pull=/l ibrary/en-us/dndotnet/html/vbnstrcatn.asp said that it is a good idea to use StringBuilder for performance reasons.
|
| CLR objects in PerfMon...are they documented somewhere? | 02 Jul 2003 23:46 GMT | 1 |
Is there any documentation on the various performance counters exposed by CLR objects? I just read a posting that jumped into a discussion of gen0 GC counts versus gen1 versuc gen2... arrgh.
|