コード例 #1
0
 /// <summary>
 /// Searches for bytes in the Processes Memory
 /// </summary>
 /// <param name="needle">Byte Sequence to scan for.</param>
 /// <param name="startAddress">Address to start the search at.</param>
 /// <param name="endAddress">Address to end the search at.</param>
 /// <param name="firstMatch">If we should stop the search at the first result.</param>
 /// <param name="bufferSize">Byte Buffer Size</param>
 /// <returns>Results<returns>
 public long[] FindBytes(byte?[] needle, long startAddress, long endAddress, bool firstMatch = false, int bufferSize = 0xFFFF)
 {
     return(MemoryUtil.FindBytes(Handle, needle, startAddress, endAddress, firstMatch, bufferSize));
 }