mem.dll
1.0.0
dotnet add package mem.dll --version 1.0.0
NuGet\Install-Package mem.dll -Version 1.0.0
<PackageReference Include="mem.dll" Version="1.0.0" />
paket add mem.dll --version 1.0.0
#r "nuget: mem.dll, 1.0.0"
// Install mem.dll as a Cake Addin #addin nuget:?package=mem.dll&version=1.0.0 // Install mem.dll as a Cake Tool #tool nuget:?package=mem.dll&version=1.0.0
This is a wiki of the basic functions of mem.dll.
----Module----
-The class to create an instance of in your code:
Module example = new Module();
----Module.init(Process target)----
-Attaches to the target application -You must always run this before using the other functions
E.g.:
Process p = Process.GetProcessById(1234); example.init(p);
----Module.write(IntPtr address, string typeofvalue, string value)----
-The function that writes to the specified address. -The types of values are: string, int, double, float
E.g.: example.write(0x0000F, "int", "9999");
----Module.getadr(IntPtr address, int[] offsets)----
-This function takes the address and adds the offsets to it. -It then returns the calculated address.
E.g.:
int[] offsets = {0xFFF,0x140}; example.getadr(process.MainModule.BaseAddress + 0x0000FF, offsets); Hope this helps.
See more at:https://github.com/Luke-Honeyball/mem.dll/wiki
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 412 | 6/22/2022 |
Added more features.