Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1.         public float GetFloat32(Process proc, IntPtr iAddress)
  2.         {
  3.             byte[] btTemp = new byte[4];
  4.             Peek(proc, iAddress, btTemp);
  5.             return BitConverter.ToSingle(btTemp, 0);
  6.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement