Exporting .NET DLLs with Visual Studio 2005 to be Consumed by Native Applications
Learn how to create a DLL, implementing the Stdcall calling convention. This DLL wraps a .NET DLL, which then is imported in MetaTrader 4 through the wrapper.
Learn how to create a DLL, implementing the Stdcall calling convention. This DLL wraps a .NET DLL, which then is imported in MetaTrader 4 through the wrapper.
We often face the need to shift a type from one assembly to another. What if everything is already deployed? The TypeForwardedTo attribute comes in to help.
Have you ever needed to execute a system command from your application? You can accomplish this easily with C#.
Learn about a simple yet elegant way to secure managed assemblies from easy disassembly by using the powerful interoperability features of .NET.
Learn how Executables and DLLs are loaded into the process address space and how CLR is initialized. Included is a simple project that includes an example and explains how to create and use a DLL in C#.