vote up 2 vote down star

Do you use visual studio's class diagram generator? Or, do you suggest any other better tool?

The main features I'm expecting out of such a tool are:

  1. Ability to generate C#/VB.net code skeletons
  2. Ability to reverse engineer C#/VB.net code (Ability to update class diagram if I modified my source code)
  3. Integration with Visual Studio, if possible
  4. SVN integration (To keep track of the changes in the class diagram)
flag

38% accept rate

9 Answers

vote up 0 vote down

I use Visio for Enterprise Architects. It doesn't have SVN integration though.

link|flag
vote up 0 vote down

I would recommend using a pen and paper or a white board because of the ease of use and the fact that you do not have any constraints. but in case you wish to have a tool on your computer I would recommended Visual Paradigm solution for UML modeling with visual studio integration.

link|flag
vote up 1 vote down

I have used the CRC Card approach described by Cunningham / Beck and many others for a number of years. Works well. Its fast, flexible and allows me to make progress quickly

http://c2.com/doc/oopsla89/paper.html

link|flag
vote up 0 vote down

We use Sparx System's Enterprise Architect for creating UML diagrams of classes, and generating code. (Not for c# but I believe it can). It can do the forward and reverse generation.

link|flag
vote up 0 vote down

If you are after a low cost / free option, I like StarUML. It has a few missing features but is great for class diagrams. It has the facility to create the code too but, like other people who have answered, I prefer to create the code myself.

Having said that, I usually start out on a Whiteboard or a pad of paper.

link|flag
vote up 6 vote down

A whiteboard and peer developers.

Translating that into code is a reasonably straightforward task, in my experience. The downside of this with traditional whiteboards is that even if you take a photo, it's hard to edit later. Ideally I'd like a digital whiteboard for this kind of thing.

The tactile, ad hoc, not-on-a-monitor nature of it is quite important to me though. In particular, because I'm not constrained by UML etc, I can express the important concepts and talk through them with other developers, potentially adding extra relationship types which aren't normally covered by tools but which are important in the design.

link|flag
vote up 2 vote down

The only thing which I use from such tools is a nice, generated Diagram to present. I won't ever use something like this to generate sourcecode.

link|flag
vote up 1 vote down

I just use code. I see no reason for any 'class designer'.

I don't understand what the rest of your list has to do with what you are asking either.

  1. Visual Studio

  2. Reflector

3/4. Ankh SVN

link|flag
The rest of the list is the feature list Vijesh expects from the class designer. – OregonGhost Sep 28 '08 at 15:14
@OregonGhost: Yes I gathered that. It still makes no sense. – Rich B Sep 28 '08 at 15:16
1 and 2 mean that the designer should work both ways (i.e. changes in the diagram are reflected in code and vice versa) and 4 means that the class diagram should be in a SVN-friendly format. – OregonGhost Sep 28 '08 at 15:17
@OregonGhost: Again, I think you miss the point. – Rich B Sep 28 '08 at 15:17
Rich, I'm basically looking out for a tool which could help me to generate class diagrams during design phase. Once I'm done with the class design I want to generate the code skeletons out of the diagram, so that I can add further logic into my classes. – Vijesh VP Sep 28 '08 at 15:18
show 10 more comments
vote up 0 vote down

I am using the built-in class designer. It's specialized for .NET code, has all the features you mentioned and worked quite well in any cases I experienced.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.