Fixed pattern, and offset from start address. #4883
-
Hi, Example:
Thanks... |
Beta Was this translation helpful? Give feedback.
Answered by
huoyaoyuan
Jun 26, 2021
Replies: 1 comment 1 reply
-
byte[] array = new byte[93];
Span<byte> span = array.AsSpan(46);
fixed (byte * p = span)
{
} obviously, the reference is at the middle of the array. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zugolbr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
obviously, the reference is at the middle of the array.