Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet performance > july 2003

SSE and MMX support in the JIT compiler
Posted by Andre at 7/30/2003 4:06:43 PM
Hi, I was wondering if anyone knows whether the JIT compiler supports SSE/SSE2 instructions? Thanks -Andre ...more >>

Load and save ArrayList
Posted by Thomas Bock at 7/29/2003 9:01:36 PM
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 with BinarySearch in it. Thomas Bock ...more >>

Internal implementation of SortedList
Posted by Joannes Vermorel at 7/29/2003 6:15:29 PM
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. But with this simple test: Random rand = new Random(); Sor...more >>

Managed C++ x Native C++ performance
Posted by Cesar Mello at 7/28/2003 10:54:58 PM
Hello!! Please can someone tell me the reason why the following code runs a lot slower in managed C++ than native? Thank you a lot! Best regards, Cesar managed version: public __gc class Teste { int m_a; public: Teste() { } double processa(int cont) { double b = 0...more >>

FFTW from C#?
Posted by johnfofawn NO[at]SPAM hotmail.com at 7/27/2003 4:40:04 PM
Hi, Has anyone create a DLL for FFTW that can be used from C#? I was able to compile all the .c files and produce .lib's, but I don't think the .libs I created can be used in C#. I tried to create a DLL from the .lib's, but I couldn't figure out how to make it work. Thanks!!! John...more >>

error message
Posted by Sheila B at 7/25/2003 9:34:20 AM
When troubleshooting sending messages, net framework initialization using Windows 98SE, I receive the following message: C\Windows\Microsoft\Framework\v1.0.375 - mscorwks.dll could not be found. Help!...more >>

Unmanaged <-> Managed
Posted by Vadym Stetsyak at 7/24/2003 8:09:07 PM
Hi there!!! What is the fastest way to communicate between managed and unmanaged code? -- Vadym Stetsyak ICQ 161730125 He, who commands the past - commands the future He, who commands the present - commands the past ...more >>

What is faster? DirectCast(myObj, Integer) or Convert.ToInt32(myObj) ?
Posted by Andreas Klemt at 7/24/2003 5:11:31 PM
Hello, 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) Thanks, Andreas ...more >>



Fast interprocess communication
Posted by Fabian Gebert at 7/24/2003 4:00:34 PM
What is the fastest solution to exchange big data fast between two processes in .NET? Thanks in advance, Fabian Gebert...more >>

Profiling tool
Posted by Andre at 7/24/2003 4:21:49 AM
Is there a good (free) profiling tool available for the CLR (other than the CLR Profiler)? I need to do some measurements :) regards -Andre ...more >>

flickering when changing both height and top
Posted by Logan McKinley at 7/23/2003 9:26:09 AM
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 it is not helping. Thanks in advance, ~Logan ...more >>

Hashtable memory use?
Posted by Jon Shemitz at 7/14/2003 12:18:49 AM
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 keys should be shared with other objects in the system; all values should be unique.)...more >>

Quake 2 on .NET
Posted by David Notario [MSFT] at 7/12/2003 12:33:18 PM
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: - This version doesnt use any 3d hardware acceleration at all, which is good, because it's interesting to see t...more >>

VB functions compared to .NET methods
Posted by Martin Heath at 7/9/2003 11:01:59 AM
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). When checking out the performance increase it's gone ...more >>

Debbugging help! (.NET 1.1 Framework Garbage Collection Problems)
Posted by Cheung, Jeffrey Jing-Yen at 7/8/2003 12:20:47 PM
Hi all, 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 down to the...more >>

ThreadPool limitations
Posted by Joel Lyons at 7/8/2003 10:41:38 AM
I am using Async delegates to make many RPC calls (each of which will take a max of a couple seconds). This seemed acceptable since the threads aren't really doing much on the local machine (the remote machines are doing all the work). Don't Async delegates actually use the thread pool? Does...more >>

.NET speed issue
Posted by jay widman at 7/7/2003 11:19:15 AM
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. One question is this, has anyone done speed comparisons between C# and C++? Years ago, there was a maga...more >>

Pausing/sleeping an IO CompletionPort Thread
Posted by Roy Chastain at 7/7/2003 9:30:15 AM
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 only one client.) I took...more >>

StringBuilder
Posted by Gomes at 7/4/2003 4:32:35 PM
Hi, 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. But the tradeoff is to have to use the .Apend method consecutively. So I wrote t...more >>

CLR objects in PerfMon...are they documented somewhere?
Posted by David Thom at 7/2/2003 4:45:38 PM
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. Sure would be a great help if us mere mortals knew what these counters actually counted! David ...more >>

passing data structure by many functions
Posted by Anibal Acosta at 7/1/2003 4:34:42 PM
I have a data structure like this Public structure myStructure Public Name as string Public LastName as string Public Age as Integer End Struct I need to pass this structure as parameter over 3 or 4 functions. I read that the structure is passed by value ( copy of the object...more >>


DevelopmentNow Blog