Duas etapas principais envolvidas são
1- Criando uma DLL C ++
No visual studio
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 do arquivo de cabeçalho
// 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.
};
}
Arquivo Cpp
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Verifique isto
**Project-> Properties -> Configuration/General -> Configuration Type**
essa opção deve ser Biblioteca Dinâmica (.dll) e criar a solução / projeto agora.
O arquivo first_dll.dll é criado na pasta Debug
2- Vinculando-o no projeto C #
Projeto C # aberto
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Adicione esta linha na parte superior do projeto C #
Using first_dll;
Agora, a função dll pode ser acessada usando a instrução abaixo em alguma função
double var = Class1.sum(4,5);
Criei dll no projeto c ++ no VS2010 e usei-o no projeto VS2013 C #. Funciona bem.