# FastWin32 **Repository Path**: AbstractFactory/FastWin32 ## Basic Information - **Project Name**: FastWin32 - **Description**: MemoryReadWrite InlineAsm Managed/UnmanagedInject - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2020-03-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FastWin32 MemoryReadWrite FunctionHook InlineAsm Managed/UnmanagedInject Exampe1:Read/WriteMemory ``` namespace Example1 { class Program { static void Main(string[] args) { uint processId; Pointer pointer; int value; processId = (uint)Process.Start("Tutorial-i386.exe").Id; Console.WriteLine("Go to \"Step 6\" then continue"); Console.ReadKey(); pointer = new Pointer("Tutorial-i386.exe", 0x1FD630, 0); MemoryIO.ReadInt32(processId, pointer, out value); Console.WriteLine($"Current value:{value}. Now we lock it"); while (true) { MemoryIO.WriteInt32(processId, pointer, 5000); Thread.Sleep(1); } } } } ```