Są to dwa główne etapy
1- Tworzenie biblioteki dll C ++
W studio wizualnym
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.
Kod pliku nagłówka
// 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.
};
}
Plik CPP
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Sprawdź to
**Project-> Properties -> Configuration/General -> Configuration Type**
tą opcją powinna być biblioteka dynamiczna (.dll) i teraz buduj rozwiązanie / projekt.
Plik first_dll.dll jest tworzony w folderze debugowania
2- Łączenie go w projekcie C #
Otwórz projekt C #
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Dodaj tę linię u góry w projekcie C #
Using first_dll;
Teraz do funkcji z biblioteki dll można uzyskać dostęp za pomocą poniższej instrukcji w niektórych funkcjach
double var = Class1.sum(4,5);
Stworzyłem dll w projekcie c ++ w VS2010 i użyłem go w projekcie VS2013 C #. To działa dobrze.