The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Some Tools I Use all the time

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Sam Gentile

Posts: 1605
Nickname: managedcod
Registered: Sep, 2003

Sam Gentile is a Microsoft .NET Consultant who has been working with .NET since the earliest
Some Tools I Use all the time Posted: Sep 21, 2003 10:39 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Sam Gentile.
Original Post: Some Tools I Use all the time
Feed Title: Sam Gentile's Blog
Feed URL: http://samgentile.com/blog/Rss.aspx
Feed Description: .NET and Software Development from an experienced perspective - .NET/CLR, Rotor, Interop, MC+/C++, COM+, ES, Mac OS X, Extreme Programming and More!
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Sam Gentile
Latest Posts From Sam Gentile's Blog

Advertisement

Inspired by Scott's most excellent list, where I picked up even more tools, I don't want to list all the tools in my c:\bin directory because that will take all day, but I want to emphaisize the tools I use every day in my work. Many of these will overlap Scott and other lists, as well as being obvious, but I thought it would still be useful to someone.

  • In my opinion, the best way to learn the .NET Framework and the CLI/CLR is to ditch VS.NET and program using a text editor and use the command line tools. VS.NET is an excellent tool but its levels of abstractions hide many things from you that you can later use after you learn the basics or not if you want to do advanced building (more on that soon). To this end, I use the excellent editor TextPad, which has many features for the power user and supports a slew of compilers. I also use it with Rotor, as I found Emacs to have just too much friction for me. I understand and support its power but it just takes too much effort to configure and thus is too much friction.
  • One must have tool is already there in your toolbox and many don't know it. ILDASM is your friend. Shipped with the free .NET Framework SDK and VS.NET, the IL Disassembler is a must use tool. I use it dozens of times a day. The ability to look into the metadata of .NET assemblies is a must in any serious .NET work, especially in Interop work to see what the default imports and exports have done or not done for you. Learn it, love it, live it,
  • To that end, I have been going on about Reflector for over a year now. Reflector is the very first thing I install after the framework. Reflector is even better than ILDASM (although I still use both for different views of the metadata). Reflector is among other things, an object browser and decompiler. You can use it to look into undocumented assemblies and find out all sorts of things. Perhaps the most indispensible .NET tool on the planet!
  • Speaking of Rotor, I use Rotor as a daily tool. Rotor is not just a hacking platform for future .NET work. Rotor is the golden key to understanding how the CLI/CLR and the BCL work. Have a Fusion question on how Assembly.Load works? Look in the code! I keep a copy on all my work machines.
  • Scott mentioned the ActiveXplorer tool. For my money, the best ActiveX/COM browser on the planet, and the one I use every day, is nogoop's ActiveX/COM Inspector. This valuable tool lets you do all the standard stuff like see all your COM type data albeit in much nicer presentation, but stands ou in its ability to instantiate ActiveX controls by dragging them onto a design surface, as well as performing Event Tracing. Indidpensible and quite reasonable at a paltry $19.95.
  • Also in my daily toolbix, is nogoop's .NET Component Inspector which just rocks!! It lets you open a whole slew of .NET assemblies, do event tracing (without wriyng delegate code!!!), create objects or controls by simple drag and drop and execute its methods and properties, as well as other valuable things. You need this.
  • Along with my command line approach, as many know, I favor an XP or Agile process and believe 100% in Write the Unit Test First. Luckily, the friction for .NET is even lower than the other frameworks, so I use NUnit all day long, every day. Its so easy and simple with its use of attributes and reflection and friction reduced to virtually 0, that there is no excuse any more not to program this way. You think about the requirements and design more, you Do the Simplest Thing That Could Possibly Work, and you always have flexible, well tested code ameanable to Refactoring and high confidence.
  • Depends or the Dependency Walker is invaluable for finding what other modules a given exe or module dpend on.
  • CLRSpy is another must-have, especially for the COM Interop developer.
  • I always use the latest version of the Microsoft Debugging Tools for Windows and WinDbg especially with Rotor
  • Process Explorer, like everything else at SysInternals is a must have and in daily use for me along with FileMon, DebugView and others.
  • FaberTools is great
  • When I am doing Web Services, the best tool on the planet is MindReef's SOAPscope 2.0, which is chock full of features (I'll have a full writeup soon)
  • Resource Hacker lets me do all sorts of nifty things with Win32 Resources in a PE file

Well, thats it for now. The kids are bouning off the walls and I better get off the computer for a while-)

Read: Some Tools I Use all the time

Topic: DialogWindow for ASP.NET Previous Topic   Next Topic Topic: More on Paired Programming and Free Tools

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use