An open API service indexing awesome lists of open source software.

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

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