突然出现 FileNotFoundException 消息

发布于 2024-11-30 01:18:58 字数 421 浏览 0 评论 0原文

我正在修改 VB .NET 中的现有应用程序。

在一个例程中,我在新引用的类库项目中添加了对类的引用,该项目是我的解决方案的一部分,现在当程序在调试时尝试访问此例程时,我会收到运行时 FileNotFoundException 消息。错误告诉我找不到该类,这是怎么回事?

需要明确的是:如果我删除与新类相关的代码行,我将不再收到异常消息。如果我把它们加回来,它们就会再次出现!

  1. 我已经在包含此例程的项目中引用了类库。
  2. 类库正在正确构建(其他项目引用相同的库,并更广泛地使用它),并且该项目正在引用我的“debug”文件夹中的类库的 .dll 文件。
  3. 我从使用这个新类的其他例程中没有收到任何错误(到目前为止)。
  4. 我在 IDE 的错误列表中没有收到任何错误。

这里到底会发生什么? SH

I am modifying an existing application in VB .NET.

In one routine, I have added a reference to a class in a newly-referenced class library project that is part of my solution, and now I get run-time FileNotFoundException messages when the program attempts to access this routine while debugging. The error tells me that the class can't be found, what's up with that?

To be clear: if I remove the lines of code relating to the new class, I no longer receive the exception messages. If I add them back in, here they come again!

  1. I have referenced the class library in the project containing this routine.
  2. The class library is building properly (other projects reference same library, and use it more extensively), and the project is referencing the class library's .dll file in my "debug" folder.
  3. I get no errors from other routines that use this new class (thus far).
  4. I get no errors in the Error List of the IDE.

What in the world could be happening here?
SH

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城花音 2024-12-07 01:18:58

这是一个项目引用,而不是对程序集 (DLL) 的引用,对吧?

.NET 框架相同吗?

您引用的项目是否依赖于其他项目中未包含的某些外部程序集,这些程序集可能会被调用,从而产生找不到文件?

This is a project reference, not a reference to an assembly (DLL), right?

Are the .NET frameworks the same?

Does the project you are referencing depend on some external assemblies not included in the other project, that might be called, producing the file not found?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文