Skip to content

How To Get Started (C#)

erfg12 edited this page Aug 6, 2018 · 15 revisions

First, open Visual Studio and create a new C# application (Win Forms, Console or WPF).

Click Projects (top tab) > Manage NuGet Packages... > Browse (top tab) > Search for memory.dll

Open the application's code view and add this to the very top of the code.

using Memory;

Inside your namespace > class brackets add the following.

public Mem MemLib = new Mem();

Raise application privileges to administrative level.

Now open the process for read/write using the following code in whichever function you want.

Use Task Manager > Details to find the specific GAME_NAME. Example: World of Warcraft is WoW.

MemLib.OpenProcess("GAME_NAME");

Now you can read or write to a specific memory pointer/offset using the external memory library.

For more examples, please see the projects listed below.