You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2018. It is now read-only.
pointers to byte arrays are use as
fixed(byte* ptr arr)the code generated will check if this is an null or zero length array
To skip these tests the statement can be written as
fixed(byte* ptr &arr[0])see generated code
fixed(byte* ptr arr)fixed(byte* ptr &arr[0])