// 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”为不明确的符号。