/// Returns the first offset in the array where the other array's range sequence of bytes can be found or the length of the array if no match exists.
/// </summary>
/// <param name="array">The array to search for the sequence of bytes.</param>
/// <param name="offset">The offset of the first byte in the array that should be compared to the sequence to find.</param>
/// <param name="count">The number of bytes in the array that the sequence can be searched in.</param>
/// <param name="other">The array that contains the sequence of bytes to search.</param>
/// <param name="otherOffset">The offset in the array containing the sequence of the first byte of the sequence.</param>
/// <param name="otherCount">The number of bytes of the sequence.</param>
/// <returns>The first offset in the array where the other array's range sequence of bytes can be found or the length of the array if no match exists.</returns>
/// Returns the first offset in the array where the other array sequence of bytes can be found or the length of the array if no match exists.
/// </summary>
/// <param name="array">The array to search for the sequence of bytes.</param>
/// <param name="offset">The offset of the first byte in the array that should be compared to the sequence to find.</param>
/// <param name="count">The number of bytes in the array that the sequence can be searched in.</param>
/// <param name="other">The array that contains the sequence of bytes to search.</param>
/// <returns>The first offset in the array where the other array sequence of bytes can be found or the length of the array if no match exists.</returns>