Vs2010内置clr项目中的运行时错误

时间:2012-06-14 05:25:53

标签: c# .net visual-studio-2010 command-line-interface

在我的clr项目中,当我使用gcnew创建托管类的实例时,它显示错误

未知模块中出现未处理的“System.IO.FileNotFoundException”类型异常。

其他信息:无法加载文件或程序集'Test,Version = 1.0.0.0,Culture = neutral,PublicKeyToken = null'或其依赖项之一。系统找不到指定的文件。

Test.dll作为参考提供,也存在于指定的路径中。这是什么原因?

下面的

是代码段

using namespace Test;<br>
int _tmain(int argc, _TCHAR* argv[])<br>
 {
int a = 10;<br>
Run^ aa = gcnew Run();<br>
aa->Execute();<br>
return 0;
}

0 个答案:

没有答案