Training
Module
Call methods from the .NET Class Library using C# - Training
Use functionality in the .NET Class Library by calling methods that return values, accept input parameters, and more.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Although calling unmanaged DLL functions is nearly identical to calling other managed code, there are differences that can make DLL functions seem confusing at first. This section introduces topics that describe some of the unusual calling-related issues.
Structures that are returned from platform invoke calls must be data types that have the same representation in managed and unmanaged code. Such types are called blittable types because they do not require conversion (see Blittable and Non-Blittable Types). To call a function that has a non-blittable structure as its return type, you can define a blittable helper type of the same size as the non-blittable type and convert the data after the function returns.
Passing Structures
Identifies the issues of passing data structures with a predefined layout.
Callback Functions
Provides basic information about callback functions.
How to: Implement Callback Functions
Describes how to implement callback functions in managed code.
Consuming Unmanaged DLL Functions
Describes how to call unmanaged DLL functions using platform invoke.
Marshalling Data with Platform Invoke
Describes how to declare method parameters and pass arguments to functions exported by unmanaged libraries.
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Training
Module
Call methods from the .NET Class Library using C# - Training
Use functionality in the .NET Class Library by calling methods that return values, accept input parameters, and more.
Documentation
Creating Prototypes in Managed Code - .NET Framework
Create prototypes in .NET managed code, so you can access unmanaged functions and use attribute fields that annotate method definition in managed code.
Consuming Unmanaged DLL Functions - .NET Framework
Consume unmanaged DLL functions by using the platform invoke service, which lets managed code call unmanaged functions implemented in DLL libraries.
Creating a Class to Hold DLL Functions - .NET Framework
Create a managed class wrapper in .NET to hold DLL functions, which helps to encapsulate platform functionality.