Skip to content

[UUF] Fix grammar #47508

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

Merged
merged 1 commit into from
Jul 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/standard/native-interop/type-marshalling.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you apply the [`System.Runtime.CompilerServices.DisableRuntimeMarshallingAttr

Generally, the runtime tries to do the "right thing" when marshalling to require the least amount of work from you. The following tables describe how each type is marshalled by default when used in a parameter or field. The C99/C++11 fixed-width integer and character types are used to ensure that the following table is correct for all platforms. You can use any native type that has the same alignment and size requirements as these types.

This first table describes the mappings for various types for whom the marshalling is the same for both P/Invoke and field marshalling.
This first table describes the mappings for types for which the marshalling is the same for both P/Invoke and field marshalling.

| C# keyword | .NET Type | Native Type |
|-------------|------------------|-------------------------|
Expand Down
Loading