https://github.com/farisc0de/loaddll
Simple .NET DLL Loader
https://github.com/farisc0de/loaddll
Last synced: 5 months ago
JSON representation
Simple .NET DLL Loader
- Host: GitHub
- URL: https://github.com/farisc0de/loaddll
- Owner: farisc0de
- License: mit
- Created: 2021-06-27T07:19:32.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-16T15:43:53.000Z (over 4 years ago)
- Last Synced: 2024-12-31T07:43:25.037Z (over 1 year ago)
- Language: Visual Basic .NET
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LoadDLL
Load Managed DLL Files in Memory
## How to use
Without Parameters
```
LoadDLL(IO.File.ReadAllBytes("Plugin.dll"), "Class1", "Run")
```
With Parameters
```
LoadDLL(IO.File.ReadAllBytes("Plugin.dll"), "Class1", "Run", New Dictionary(Of Object, Object)() From {
{"var1", "hello"},
{"var2", "world"}
})
```
## Copyright
MIT