Visual C ++中的错误未解析令牌(06000001)LNK2020

时间:2014-04-07 13:30:14

标签: c++ user-interface c++-cli visual-studio-2013

您好我在创建新课程时收到此错误消息:

error LNK2020: unresolved token (06000001) write_functions::WritePaths
error LNK1120: 1 unresolved externals   

类.h文件如下所示:

#pragma once

#include <string>
#include <utility>
#include <fstream>
#include <sstream>

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

ref class write_functions
{
public:

private:

   std::pair<bool,std::string> WritePaths(System::Windows::Forms::RichTextBox^ Box);
};

我已经制作了类似于此的其他课程,它们工作正常,所以我不知道为什么我突然得到这个错误。

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

看起来WritePaths尚未实施。我没有看到声明有什么问题,但如果你声明方法并且实际上没有实现它,那么这就是你应该得到的链接器错误。如果您的.cpp文件中有实现,请发布。