Link to home
Start Free TrialLog in
Avatar of Cosine_Consultants
Cosine_Consultants

asked on

Reverse Engineer - Using Visual Studio Enterprise Architect

What are the steps to reverse Engineer my project using Visual Studio Enterprise Architect ? Can I use Microsoft Visio Professional 2002 to do it or do I need a different version ?
Avatar of iboutchkine
iboutchkine

What do you mean by reverse engineer? Do you need to get the code from exe?
Can you use ILDASM?

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptutorials/html/il_dasm_tutorial.asp


This tutorial offers an introduction to the MSIL Disassembler (Ildasm.exe) that is included with the .NET
Framework SDK. The Ildasm.exe parses any .NET Framework .exe or .dll assembly, and shows the
information in human-readable format. Ildasm.exe shows more than just the Microsoft intermediate language
(MSIL) code — it also displays namespaces and types, including their interfaces. You can use Ildasm.exe
to examine native .NET Framework assemblies, such as Mscorlib.dll, as well as .NET Framework assemblies
provided by others or created yourself. Most .NET Framework developers will find Ildasm.exe indispensable.

all the details, see the CIL Instruction Set Specification, which is located in the Partition III CIL.doc file in
the <FrameworkSDK>\Tool Developers Guide\Docs\ folder.)
Avatar of Cosine_Consultants

ASKER

Thanks for the quick response. What I meant when saying reverse engineer is that I have created a project using VB.net and now I want to get the UML diagrams for that. Whereas the Forward Engineer is when you create the UML diagrams and the tool generates automatically the .NET code.
There's an option at Project, called "Visio UML" and then "Reverse Engineer".

I warn you that it wont produce fancy graphics, but will identity most artifacts in your projects, and then you can drag'n'drop them to the Visio surface, as well as make use of the other UML stencils...

hth

Vasco
I can not find an Option like that at Project. Could you shed some more light on this?
ASKER CERTIFIED SOLUTION
Avatar of vascov
vascov
Flag of United States of America 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