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
The default for arrays is different than built in COM, and arrays are especially confusing. To help ensure people know what to expect from the generated code, we should nudge people to use [In] and [Out] attributes explicitly with an info message and code-fix to annotate the method to get the built-in COM behavior.
In particular, arrays of pinnable elements are [In] by default, but pin for performance reasons in managed to unmanaged. This means the managed to unmanaged behavior will still match built in com, but unmanaged to managed will not marshal out.
Since we now want to prefer explicit attributes, we also should remove the "Unnecessary [In] and [Out] attributes" info message.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/interop-contrib
See info in area-owners.md if you want to be subscribed.
Issue Details
The default for arrays is different than built in COM, and arrays are especially confusing. To help ensure people know what to expect from the generated code, we should nudge people to use [In] and [Out] attributes explicitly with an info message and code-fix to annotate the method to get the built-in COM behavior.
In particular, arrays of pinnable elements are [In] by default, but pin for performance reasons in managed to unmanaged. This means the managed to unmanaged behavior will still match built in com, but unmanaged to managed will not marshal out.
The default for arrays is different than built in COM, and arrays are especially confusing. To help ensure people know what to expect from the generated code, we should nudge people to use [In] and [Out] attributes explicitly with an info message and code-fix to annotate the method to get the built-in COM behavior.
In particular, arrays of pinnable elements are [In] by default, but pin for performance reasons in managed to unmanaged. This means the managed to unmanaged behavior will still match built in com, but unmanaged to managed will not marshal out.
Since we now want to prefer explicit attributes, we also should remove the "Unnecessary [In] and [Out] attributes" info message.
The text was updated successfully, but these errors were encountered: