Viewing VB code of a .exe file

VonEhle

Active member
Joined
Feb 20, 2006
Messages
26
Programming Experience
Beginner
If all I have is a .exe file from a program I know is written in VB.net, is there a way I can view the code?
 
This depends on the level of protection attempted by the programmer. The short answer is yes, as I am sure this is your code (and therefore it presumably isnt obfuscated or encrypted) you are trying to reverse for testing purposes, as, decompiling someone elses code would be generally wrong.

A quick Google for .NET decompiler, or more specifically one I used a while back to test some code obfuscation, "Reflector for .NET", should turn up some help.
 
Back
Top