Dos pasos principales involucrados son
1- Creando un dll C ++
En estudio visual
New->Project->Class Library in c++ template. Name of project here is first_dll in
visual studio 2010. Now declare your function as public in first_dll.h file and
write the code in first_dll.cpp file as shown below.
Código de archivo de encabezado
// first_dll.h
using namespace System;
namespace first_dll
{
public ref class Class1
{
public:
static double sum(int ,int );
// TODO: Add your methods for this class here.
};
}
Archivo Cpp
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Mira esto
**Project-> Properties -> Configuration/General -> Configuration Type**
esta opción debería ser Dynamic Library (.dll) y construir la solución / proyecto ahora.
El archivo first_dll.dll se crea en la carpeta Debug
2- Vinculación en proyecto C #
Proyecto abierto C #
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Agregue esta línea en la parte superior del proyecto C #
Using first_dll;
Ahora se puede acceder a la función de dll usando la siguiente declaración en alguna función
double var = Class1.sum(4,5);
Creé dll en el proyecto c ++ en VS2010 y lo usé en el proyecto VS2013 C #. Funciona bien.