VS C++中调用C#动态库静态函数

时间:2023-01-24 19:00:50

   

// test.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <string>
#using "../debug/WriteLog.dll"
using namespace WriteLog1;
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
 
   WriteLog::Write("haha1","haha1");
   
 return 0;
}

 

说明:

#using "../debug/WriteLog.dll"  "WriteLog.dll"是使用C#语言实现的日志记录功能的动态库。

using namespace WriteLog1;    "WriteLog1"是C#代码中的命名空间,最初为WriteLog与类名一样,造成编译不通过,显示错误为“WriteLog”为不明确的符号。