Developer's tools
-
Is there a huge assortment of developer tools that allow you to analyze your code for memory leaks, performance issues, and security risks? How would you rate the tools that are out there? Are they mostly good? What do you look for in code analysis tools and what capabilities do you want them to have? I have always wanted to create software that would improve the quality of code. It would be nice if there were tools that could inform you of more efficient code logic that could do the same task as sloppy bloated code. I would like as many reasonable ideas you can give me as to what you want in code analysis tools. This would be a great project that would keep me busy and give me something to feel passionate about.
█▒▒▒▒▒██▒█▒██ █▒█████▒▒▒▒▒█ █▒██████▒█▒██ █▒█████▒▒▒▒▒█ █▒▒▒▒▒██▒█▒██
-
Is there a huge assortment of developer tools that allow you to analyze your code for memory leaks, performance issues, and security risks? How would you rate the tools that are out there? Are they mostly good? What do you look for in code analysis tools and what capabilities do you want them to have? I have always wanted to create software that would improve the quality of code. It would be nice if there were tools that could inform you of more efficient code logic that could do the same task as sloppy bloated code. I would like as many reasonable ideas you can give me as to what you want in code analysis tools. This would be a great project that would keep me busy and give me something to feel passionate about.
█▒▒▒▒▒██▒█▒██ █▒█████▒▒▒▒▒█ █▒██████▒█▒██ █▒█████▒▒▒▒▒█ █▒▒▒▒▒██▒█▒██
-
Is there a huge assortment of developer tools that allow you to analyze your code for memory leaks, performance issues, and security risks? How would you rate the tools that are out there? Are they mostly good? What do you look for in code analysis tools and what capabilities do you want them to have? I have always wanted to create software that would improve the quality of code. It would be nice if there were tools that could inform you of more efficient code logic that could do the same task as sloppy bloated code. I would like as many reasonable ideas you can give me as to what you want in code analysis tools. This would be a great project that would keep me busy and give me something to feel passionate about.
█▒▒▒▒▒██▒█▒██ █▒█████▒▒▒▒▒█ █▒██████▒█▒██ █▒█████▒▒▒▒▒█ █▒▒▒▒▒██▒█▒██
-
Is there a huge assortment of developer tools that allow you to analyze your code for memory leaks, performance issues, and security risks? How would you rate the tools that are out there? Are they mostly good? What do you look for in code analysis tools and what capabilities do you want them to have? I have always wanted to create software that would improve the quality of code. It would be nice if there were tools that could inform you of more efficient code logic that could do the same task as sloppy bloated code. I would like as many reasonable ideas you can give me as to what you want in code analysis tools. This would be a great project that would keep me busy and give me something to feel passionate about.
█▒▒▒▒▒██▒█▒██ █▒█████▒▒▒▒▒█ █▒██████▒█▒██ █▒█████▒▒▒▒▒█ █▒▒▒▒▒██▒█▒██
-
Captain See Sharp wrote:
tools that allow you to analyze your code for memory leaks
You program in C#, you're not supposed to have memory leaks. :laugh:
The evolution of the human genome is too important to be left to chance idiots like CSS.
dotNet Profiler (great tool for memory/performance profiling) and of course FxCop (VS2005 Team Suite has inbult static analyzer)=))) 2Tim Craig read this article about "memory leaks"=))) когда ж я сдохну.... -- modified at 5:27 Friday 16th February, 2007 когда ж я сдохну...
-
Captain See Sharp wrote:
tools that allow you to analyze your code for memory leaks
You program in C#, you're not supposed to have memory leaks. :laugh:
The evolution of the human genome is too important to be left to chance idiots like CSS.
C# can leak memory. Just look up 'Dynamic Assemblies' and see where their memory is allocated. One common place using dynamic assemblies is Regex. I have seen quite a bit of leakage due to this. Scott
-
dotNet Profiler (great tool for memory/performance profiling) and of course FxCop (VS2005 Team Suite has inbult static analyzer)=))) 2Tim Craig read this article about "memory leaks"=))) когда ж я сдохну.... -- modified at 5:27 Friday 16th February, 2007 когда ж я сдохну...
Thanks for the info but I don't and won't use C#. I just think it's so funny because of all the hype about how it's better than C++ because you don't have to worry about memory leaks while they conveniently forget they don't automatically free other resources like file handles, GDI objects, etc, which IMHO are a much more common problem. My C++ applications never leaked memory because Microsoft has provided an instrumented heap, at least since the MFC 1.5 days, which when the debug version of the app exited, showed you were leaking memory and pointed you to the line of code where it was allocated.
The evolution of the human genome is too important to be left to chance idiots like CSS.
-
C# can leak memory. Just look up 'Dynamic Assemblies' and see where their memory is allocated. One common place using dynamic assemblies is Regex. I have seen quite a bit of leakage due to this. Scott
-
C# can leak memory. Just look up 'Dynamic Assemblies' and see where their memory is allocated. One common place using dynamic assemblies is Regex. I have seen quite a bit of leakage due to this. Scott
Thanks for pointing that out Scott. I was trying to find the memory leak for some time. Roch