I'd to ask whether it is possible to read memory of other process while using .NET Core on Linux
on Windows I'm using DllImports
[DllImport("kernel32.dll")]
public static extern IntPtr OpenProcess(int dwDesiredAccess, bool bInheritHandle, int dwProcessId);
[DllImport("kernel32.dll")]
public static extern bool ReadProcessMemory(int hProcess, int lpBaseAddress, byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesRead);
but how can I achieve that on Linux?
I'd want to read value from address e.g ProcessBaseMemoryAddresss
+ 0x210438