Два основных этапа включают
1- Создание DLL 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**
эта опция должна быть Dynamic Library (.dll) и построить решение / проект сейчас.
Файл first_dll.dll создается в папке Debug
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 в проекте c ++ в VS2010 и использовал его в проекте VS2013 C #. Это работает хорошо.