Zwei Hauptschritte sind:
1- Erstellen einer C ++ - DLL
Im visuellen 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.
Header-Dateicode
// 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.
};
}
Cpp-Datei
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Überprüfen Sie dies
**Project-> Properties -> Configuration/General -> Configuration Type**
Diese Option sollte Dynamic Library (.dll) sein und die Lösung / das Projekt jetzt erstellen.
Die Datei first_dll.dll wird im Debug-Ordner erstellt
2- Verknüpfen im C # -Projekt
Öffnen Sie das C # -Projekt
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Fügen Sie diese Zeile oben im C # -Projekt hinzu
Using first_dll;
Jetzt kann auf die Funktion von DLL mit der folgenden Anweisung in einigen Funktionen zugegriffen werden
double var = Class1.sum(4,5);
Ich habe DLL in C ++ Projekt in VS2010 erstellt und es in VS2013 C # Projekt verwendet. Es funktioniert gut.