CallingConvention Enumeration
Specifies the calling convention required to call methods implemented in unmanaged code.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| Cdecl | The caller cleans the stack. This enables calling functions with varargs, which makes it appropriate to use for methods that accept a variable number of parameters, such as Printf. | |
| FastCall | This calling convention is not supported. | |
| StdCall | The callee cleans the stack. This is the default convention for calling unmanaged functions with platform invoke. | |
| ThisCall | The first parameter is the this pointer and is stored in register ECX. Other parameters are pushed on the stack. This calling convention is used to call methods on classes exported from an unmanaged DLL. | |
| Winapi | This member is not actually a calling convention, but instead uses the default platform calling convention. For example, on Windows the default is StdCall and on Windows CE.NET it is Cdecl. |
Always use the CallingConvention enumeration rather than the CALLCONV enumeration to specify a calling convention in managed code. The latter exists only for the sake of COM definitions. The CallingConvention enumeration is used by DllImportAttribute and several classes in System.Reflection.Emit to dynamically emit platform invoke signatures.
The following example demonstrates how to apply the Cdecl calling convention, which you must use because the stack is cleaned up by the caller.
using namespace System; using namespace System::Runtime::InteropServices; public ref class LibWrap { public: // CallingConvention.Cdecl must be used since the stack is // cleaned up by the caller. // int printf( const char *format [, argument]... ) [DllImport("msvcrt.dll",CharSet=CharSet::Unicode, CallingConvention=CallingConvention::Cdecl)] static int printf( String^ format, int i, double d ); [DllImport("msvcrt.dll",CharSet=CharSet::Unicode, CallingConvention=CallingConvention::Cdecl)] static int printf( String^ format, int i, String^ s ); }; int main() { LibWrap::printf( "\nPrint params: %i %f", 99, 99.99 ); LibWrap::printf( "\nPrint params: %i %s", 99, "abcd" ); }
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1