https://github.com/caphosra/shavedice_classviewer
It is an application that visualizes functions and variables inside the DLL file and EXE file(.NET framework)
https://github.com/caphosra/shavedice_classviewer
csharp dllimport dotnet-framework dotnetframework resource-viewer reverse-engineering windows10
Last synced: 4 months ago
JSON representation
It is an application that visualizes functions and variables inside the DLL file and EXE file(.NET framework)
- Host: GitHub
- URL: https://github.com/caphosra/shavedice_classviewer
- Owner: caphosra
- License: mit
- Created: 2018-07-28T12:03:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-02T01:06:42.000Z (over 7 years ago)
- Last Synced: 2025-01-10T19:56:52.408Z (about 1 year ago)
- Topics: csharp, dllimport, dotnet-framework, dotnetframework, resource-viewer, reverse-engineering, windows10
- Language: C#
- Homepage:
- Size: 28.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ShavedIce_ClassViewer
It is an application that visualizes functions and variables inside the DLL file and EXE file(.NET framework)
## Description
Using this application, you can view DLL file and EXE file.
⚠This library can load only DLL or EXE which has manifest.
## Demo
If you had following code and built,
``` C#
// 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.

## Requirement
.NET Framework
## Usage
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
```
## Install
Go to [ReleasePage](https://github.com/capra314cabra/ShavedIce_ClassViewer/releases) or Download [ZIP](https://github.com/capra314cabra/ShavedIce_ClassViewer/archive/master.zip)
## Contribution
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create new Pull Request
## Licence
[MIT](https://github.com/capra314cabra/ShavedIce_ClassViewer/blob/master/LICENSE)
## Author
[capra314cabra](https://github.com/capra314cabra)