Dua langkah utama yang terlibat adalah
1- Membuat C ++ dll
Di studio 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.
Kode File Header
// 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;
}
}
Periksa ini
**Project-> Properties -> Configuration/General -> Configuration Type**
opsi ini harus menjadi Dynamic Library (.dll) dan membangun solusi / proyek sekarang.
File first_dll.dll dibuat di folder Debug
2- Menghubungkannya dalam proyek C #
Buka proyek C #
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Tambahkan baris ini di atas dalam proyek C #
Using first_dll;
Sekarang fungsi dari dll dapat diakses menggunakan pernyataan di bawah ini di beberapa fungsi
double var = Class1.sum(4,5);
Saya membuat dll dalam proyek c ++ di VS2010 dan menggunakannya dalam VS2013 C # project.It bekerja dengan baik.