Create class files from an assembly?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a commercial tool or sample code that can take a dll assembly and
create code similar to the interfaces/namespaces/classes within the assembly?

Any products that can do this, particulary with C#?

Thanks,
Dan H.
 
Perfect!! Reflector is great.

Thanks!

Dan

Nicholas Paldino said:
Dan,

Have you looked at Reflector:

http://www.aisto.com/roeder/dotnet/

In addition, you can use this:

http://www.denisbauer.com/NETTools/FileDisassembler.aspx

Which is a plug in for reflector. It allows you to basically decompile
an assembly into source.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Is there a commercial tool or sample code that can take a dll assembly and
create code similar to the interfaces/namespaces/classes within the
assembly?

Any products that can do this, particulary with C#?

Thanks,
Dan H.
 
Back
Top