I am using C# to develop an enterprise level application. I use VS2010 Modeling Project to model my classes but there is no code generation utility which available for free. I want to know if is there any Utility/Extension that can generate C#/VB code from UML diagrams.
1 Answer
The T4 framework does comprehensive code generation in Visual Studio.
2 Comments
Uzair Anwaar
Thanks to Reply Tom. Your Provided Link is About T4 Code Template Which uses many ways to Generate code but not from UML Diagrams. My need is to Generate Code From UML Diagrams Particularly Class Diagrams. Can You Help me in Scenario.
Tom W
You can generate code from anything you like if you're willing to write the template logic. Alternatively, thirty seconds on google yielded the following olegsych.com/2010/01/… which looks like what you're asking for. It mentions code generation from the VS2010 UML diagrams, which apears to be built-in.