mem.dll 1.0.0

dotnet add package mem.dll --version 1.0.0
NuGet\Install-Package mem.dll -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="mem.dll" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add mem.dll --version 1.0.0
#r "nuget: mem.dll, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 286 6/22/2022

Added more features.