I need to create a class diagram from my existing code. Suppose I have the following classes -
public class Person { public string Name { get; set;} public int Age { get; set;} public Address Address { get; set; } public Education Education { get; set; } } public class Address { public string AddressLine1 { get; set; } .... } public class Education { public string CollegeName { get; set; } .... }
I want to create digram for the Person class, for example:

I know about the UML diagram, but it does not create what I expect. As far as I know, it creates a hierarchy of inheritance.
I am using the Visual Studio 2015 community version. Can someone tell me a tool to create a digram class, as I mentioned above?
Thanks!
source share