Update README.md
chore: add license
Remove redundant code
I would advise to use https://github.com/Reloaded-Project/Reloaded.Injector/ instead of this.
Only one function parameter can be passed. x64 processes aren't currently supported. (maybe just the dlls I tried to inject were the problem)
This is a simple C# dll injector. It can inject dll into remote process and execute functions of it.
/examples/csharp-dllexport
/examples/cpp
Injector
class, the Inject
method will return InjectedModule
with ExecuteFunction
methodInjectedModule injectedModule = Injector.Inject("RemoteProcess", "MyDynamicLibrary.dll");
FunctionResult result = injectedModule.ExecuteFunction("Main");
int integerResult = result.To<int>(); // Primitive types are casted from IntPtr, Reference types are Read from pointer