Link to home
Start Free TrialLog in
Avatar of Easwaran Paramasivam
Easwaran ParamasivamFlag for India

asked on

Is there any easy way to identify the relationship between classess in a project?

Is there any easy way to identify the relationship between classess in a project in VS.NET?

The project could be either Class Library or WebApplication/Web Project.
Avatar of BuggyCoder
BuggyCoder
Flag of India image

you can see the relationship once you generate class diagram, right click on your library and click view class diagram...
http://msdn.microsoft.com/en-us/library/ff657806.aspx

or you can use tools like visio to generate UML Diagrams for your.
There is another tool called UMLStar....
Avatar of Easwaran Paramasivam

ASKER

The link that you provided does not provide option to create UML Diagram for existing C# project. How to achieve that?

I have existing project. I would like to created UML diagram for that.
SOLUTION
Avatar of BuggyCoder
BuggyCoder
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Well. This is only option for class diagram. What about other kind of diagrams such as sequential diagram?
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Class diagrams are the only ones provided with the Professional edition of Visual Studio that are used by most programmers as well as with the Premium edition.

In order to have other types of diagrams, you need to buy the Ultimate Edition.
Thanks.