We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Should be
GCHandle gch = GCHandle.FromIntPtr((IntPtr)(*ptr));
instead of
GCHandle gch = GCHandle.FromIntPtr((IntPtr)ptr);
C#
The text was updated successfully, but these errors were encountered:
GH-36688: [C#] Fix dereference error (#36691)
b477501
* Closes: #36688 Authored-by: Curt Hagenlocher <[email protected]> Signed-off-by: Weston Pace <[email protected]>
apacheGH-36688: [C#] Fix dereference error (apache#36691)
a742aa3
* Closes: apache#36688 Authored-by: Curt Hagenlocher <[email protected]> Signed-off-by: Weston Pace <[email protected]>
f0f27d7
ab1ddac
CurtHagenlocher
Successfully merging a pull request may close this issue.
Describe the bug, including details regarding any error messages, version, and platform.
Should be
GCHandle gch = GCHandle.FromIntPtr((IntPtr)(*ptr));
instead of
GCHandle gch = GCHandle.FromIntPtr((IntPtr)ptr);
Component(s)
C#
The text was updated successfully, but these errors were encountered: