Memory.Net 0.0.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Memory.Net --version 0.0.0.5
NuGet\Install-Package Memory.Net -Version 0.0.0.5
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="Memory.Net" Version="0.0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Memory.Net --version 0.0.0.5
#r "nuget: Memory.Net, 0.0.0.5"
#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 Memory.Net as a Cake Addin
#addin nuget:?package=Memory.Net&version=0.0.0.5

// Install Memory.Net as a Cake Tool
#tool nuget:?package=Memory.Net&version=0.0.0.5

📦 Memory.Net

Memory.Net - .Net C# Memory Manipulation & Exploitation Library, With Features Such As Pattern Scanning, Memory Basic Manipulation, Disassembly, Thread & Module Manipulation And Much More.

Memory.Net - Documentation

using Memory.Net;
using Memory.Net.Interop; 

/* Note : Memory.Net Implements IDisposable. */

/* #1. Constructor */
Memory MemoryNet = new Memory()
{
	Name = "Process Name",
	Architecture = Architecture.x86 /* x86 Or x64 Or Auto */,
};

/* At The End Of Operations Ensure The Disposal Of Memory There Are 2 Ways As Shown Below. */
MemoryNet.Dispose();

/* Or You Could Use A Using Statement Which Auto Disposes. */
using (Memory MemoryNet = new Memory()
{
	Name = "Process Name";
	Architecture = Architecture.x86;
})
{

};

Using The Instance Created You Can Proceed To Call And Use Memory.Net's Functions To The Fullest Extent Some Examples Are Shown Below

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • 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
0.0.0.6 100 3/27/2024
0.0.0.5 96 3/9/2024
0.0.0.3 156 6/29/2023
0.0.0.2 122 6/28/2023
0.0.0.1 119 6/28/2023

Updated Core Memory Factory And Its Usage.