I am working on a memory reader/writer class, but i am stuck with it. My problem is that i want to modify an other process memory values with a struct pointer. I know how to do it in C++ but not with C#
My current code is:
class CModifier
{
struct Data
{
int iMember;
float fMember;
}
public CModifier()
{
Data data[62];
*data = 0x123456;
// use them to modify values etc.
data.fMember = 1.2345f;
}
}