Два основні кроки - це два
1- Створення DL + C ++
У візуальній студії
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.
Код файлу заголовка
// 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
//first_dll.cpp
#include "stdafx.h"
#include "first_dll.h"
namespace first_dll
{
double Class1:: sum(int x,int y)
{
return x+y;
}
}
Перевір це
**Project-> Properties -> Configuration/General -> Configuration Type**
ця опція повинна бути Динамічною бібліотекою (.dll) і побудувати рішення / проект зараз.
Файл first_dll.dll створюється в папці Налагодження
2- Зв’язування його у проекті C #
Відкрити проект C #
Rightclick on project name in solution explorer -> Add -> References -> Browse to path
where first_dll.dll is created and add the file.
Додайте цей рядок вгорі в проекті C #
Using first_dll;
Тепер до функції з DLL можна отримати доступ, використовуючи нижченаведений оператор у деякій функції
double var = Class1.sum(4,5);
Я створив проект dll in c ++ у VS2010 та використав його у проекті VS2013 C #. Він добре працює.