Sono due i passaggi principali coinvolti
1- Creazione di una dll C ++
In studio visivo
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.
Codice file di intestazione
// 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.
};
}
File cpp
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Controllare questo
**Project-> Properties -> Configuration/General -> Configuration Type**
questa opzione dovrebbe essere Dynamic Library (.dll) e creare subito la soluzione / progetto.
Il file first_dll.dll viene creato nella cartella Debug
2- Collegamento nel progetto C #
Apri progetto C #
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Aggiungi questa riga all'inizio del progetto C #
Using first_dll;
Ora è possibile accedere alla funzione da DLL usando l'istruzione sottostante in alcune funzioni
double var = Class1.sum(4,5);
Ho creato DLL nel progetto c ++ in VS2010 e l'ho usata nel progetto VS2013 C #. Funziona bene.