Mokymas
Modulis
Format alphanumeric data for presentation in C# - Training
Explore basic methods in C# to format alphanumeric data.
Ši naršyklė nebepalaikoma.
Atnaujinkite į „Microsoft Edge“, kad pasinaudotumėte naujausiomis funkcijomis, saugos naujinimais ir techniniu palaikymu.
Platform invoke copies string parameters, converting them from the .NET Framework format (Unicode) to the unmanaged format (ANSI), if needed. Because managed strings are immutable, platform invoke does not copy them back from unmanaged memory to managed memory when the function returns.
The following table lists marshalling options for strings, describes their usage, and provides a link to the corresponding .NET Framework sample.
String | Description | Sample |
---|---|---|
By value. | Passes strings as In parameters. | MsgBox |
As result. | Returns strings from unmanaged code. | Strings |
By reference. | Passes strings as In/Out parameters using StringBuilder. | Buffers |
In a structure by value. | Passes strings in a structure that is an In parameter. | Structs |
In a structure by reference (char*). | Passes strings in a structure that is an In/Out parameter. The unmanaged function expects a pointer to a character buffer and the buffer size is a member of the structure. | Strings |
In a structure by reference (char[]). | Passes strings in a structure that is an In/Out parameter. The unmanaged function expects an embedded character buffer. | OSInfo |
In a class by value (char*). | Passes strings in a class (a class is an In/Out parameter). The unmanaged function expects a pointer to a character buffer. | OpenFileDlg |
In a class by value (char[]). | Passes strings in a class (a class is an In/Out parameter). The unmanaged function expects an embedded character buffer. | OSInfo |
As an array of strings by value. | Creates an array of strings that is passed by value. | Arrays |
As an array of structures that contain strings by value. | Creates an array of structures that contain strings and the array is passed by value. | Arrays |
.NET atsiliepimas
.NET yra atvirojo kodo projektas. Pasirinkite saitą, kad pateiktumėte atsiliepimą:
Mokymas
Modulis
Format alphanumeric data for presentation in C# - Training
Explore basic methods in C# to format alphanumeric data.
Dokumentacija
Marshalling Classes, Structures, and Unions - .NET Framework
Review how to marshal classes, structures, and unions. View samples of marshalling classes, structures with nested structures, arrays of structures, and unions.
Default Marshalling for Strings - .NET Framework
Review the default marshalling behavior for strings in interfaces, platform invoke, structures, & fixed-length string buffers in .NET.
Marshalling Different Types of Arrays - .NET Framework
Marshal different array types, like integers by value or reference, 2-dimensional integers by value, strings by value, and structures with integers or strings.