ProcessMemory64 4.0.1-beta.20221205023454

This is a prerelease version of ProcessMemory64.
dotnet add package ProcessMemory64 --version 4.0.1-beta.20221205023454
NuGet\Install-Package ProcessMemory64 -Version 4.0.1-beta.20221205023454
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="ProcessMemory64" Version="4.0.1-beta.20221205023454" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ProcessMemory64 --version 4.0.1-beta.20221205023454
#r "nuget: ProcessMemory64, 4.0.1-beta.20221205023454"
#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 ProcessMemory64 as a Cake Addin
#addin nuget:?package=ProcessMemory64&version=4.0.1-beta.20221205023454&prerelease

// Install ProcessMemory64 as a Cake Tool
#tool nuget:?package=ProcessMemory64&version=4.0.1-beta.20221205023454&prerelease

ProcessMemory

A library for reading and writing process memory.

Usage example

using System;
using System.Diagnostics;
using ProcessMemory;

namespace ProcMemTester
{
    public unsafe static class Program
    {
        private static Process process = Process.GetProcessesByName("re3")[0];
        private static ProcessMemoryHandler processMemoryHandler = new ProcessMemoryHandler((uint)process.Id);
        private static MultilevelPointer healthPointer = new MultilevelPointer(processMemoryHandler, (nint*)process.MainModule?.BaseAddress + 0x08D89B90, 0x50, 0x20);
        public static int MaximumHealth => healthPointer.DerefInt(0x54);
        public static int CurrentHealth => healthPointer.DerefInt(0x58);

        public static void Main()
        {
            Console.WriteLine("HP: {0} / {1}", CurrentHealth, MaximumHealth);
            Console.WriteLine("Press any key to exit...");
            Console.ReadKey();
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
4.0.1-beta.20221205023454 162 12/5/2022
4.0.1-alpha.20221205014311 105 12/5/2022
4.0.0-alpha.20220711043216 122 7/11/2022
4.0.0-alpha.20220710235031 123 7/10/2022