-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move ArrayMarshaller and PointerArrayMarshaller to the v2 design #71978
Conversation
Remove the built-in custom array pinning code as we don't need it any more (it's implemented on the marshallers themselves with the static GetPinnableReference method)
Tagging subscribers to this area: @dotnet/interop-contrib Issue DetailsRemove the built-in custom array pinning code as we don't need it any more (it's implemented on the marshallers themselves with the static GetPinnableReference method)
|
Note regarding the This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, to please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change. |
29a2773
to
19c6a7c
Compare
19c6a7c
to
cabcc42
Compare
src/libraries/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.cs
Outdated
Show resolved
Hide resolved
5c5851a
to
72e9f03
Compare
039ed3f
to
63b2707
Compare
...ies/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshalling/ArrayMarshaller.cs
Outdated
Show resolved
Hide resolved
…marshallers uncovered.
The test failures are #71990 and a GC hole that is under investigation. I'm going to merge this in. |
Remove the built-in custom array pinning code as we don't need it any more (it's implemented on the marshallers themselves with the static GetPinnableReference method)
Contributes to #70859