

byte[] value = new byte[4];
IntPtr Zero = IntPtr.Zero;
for( int i = 0x00000000; i < 0x7FFFFFFF; i++ ) {
ReadProcessMemory( Process, i, value, 4, out Zero );
if( BitConverter.ToInt32( value, 0 ) == 10548451 ) {
//Display it on the listbox
}
}