It is an application that visualizes functions and variables inside the DLL file and EXE file(.NET framework)
Using this application, you can view DLL file and EXE file.
⚠This library can load only DLL or EXE which has manifest.
If you had following code and built,
// The file name is "Test.dll"
namespace Test
{
public class Class1
{
public int a = 0;
private void b() { }
public string c() { return null; }
private static int d(byte b) { return 0; }
private short e = 0;
}
}
You can see members of "Test.dll" without code.
.NET Framework
After add the path to ShavedIce to your Path environment variable on Windows,
You can use following command.
shavedice [DLL file's path]
Using following command, this application make a html file with the result written.
shavedice [DLL file's path] -f [output file path] -html
Go to ReleasePage or Download ZIP
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request