예제 #1
0
파일: Mem.cs 프로젝트: yatoky/ROSUltraHack
 public static float[] ReadMatrix <T>(int Adress, int MatrixSize) where T : struct
 {
     byte[] numArray = new byte[Marshal.SizeOf(typeof(T)) * MatrixSize];
     Mem.ReadProcessMemory((int)Mem.m_pProcessHandle, Adress, numArray, numArray.Length, ref Mem.m_iNumberOfBytesRead);
     return(Mem.ConvertToFloatArray(numArray));
 }