-1

I've many classes written in C#.NET in my solution. I need something like a class diagram along with the relation-ships between the existing classes using Visual Studio.

Pavan Kumar
  • 85
  • 11
  • Have you tried googling this before posting here? – Marko Popovic Feb 29 '16 at 10:48
  • Possible duplicate of [How to generate class diagram from project in Visual Studio 2013?](http://stackoverflow.com/questions/20873489/how-to-generate-class-diagram-from-project-in-visual-studio-2013) – Marko Popovic Feb 29 '16 at 10:51

2 Answers2

0

try inheritance to create the class relationships

example:

Public class Vehicels
{}

public class Car : Vehicels
{}
  • 1
    Already classes are there in the solution with the relationships. Now I want to generate the class diagram from the class along with the existing relationships. I heard that PowerToys helps in this scenario but not sure how! – Pavan Kumar Feb 29 '16 at 10:45
0

Considering using "View Class Diagram" in Visual Studio.

More information on Adding a Class Diagram to your project can be found here: https://msdn.microsoft.com/en-us/library/hyxd8c85.aspx

GibboK
  • 71,848
  • 143
  • 435
  • 658