C# 汇编中的 SQL 汇编错误

发布于 2024-11-30 20:14:42 字数 435 浏览 1 评论 0原文

我有旧代码,源代码丢失了(但我们拥有它),所以我使用 Reflector.net 对其进行了反编译。

现在,当我编译它时,我得到这个:

 Error  1   The type 'System.ComponentModel.Component' is defined in an assembly that is not referenced. You must add a reference to assembly 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.  C:\NCESTableGenerator\NCESTableGenerator\db\OutputTableDAO.cs   27  20  NCESTableGenerator

这是什么意思?

I had old code that the source got lost (but we own it) so I decomplied it using reflector.net.

Now when I compile it, I get this:

 Error  1   The type 'System.ComponentModel.Component' is defined in an assembly that is not referenced. You must add a reference to assembly 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.  C:\NCESTableGenerator\NCESTableGenerator\db\OutputTableDAO.cs   27  20  NCESTableGenerator

What does this mean?

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

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

发布评论

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

评论(2

你是我的挚爱i 2024-12-07 20:14:42

这意味着您需要将对 System.dll 的引用添加到您的项目中,然后再次尝试编译。

It means that you need to add a reference to System.dll to your project and try compiling again.

没︽人懂的悲伤 2024-12-07 20:14:42

间接引用了一个程序集(您添加了一个引用有问题的程序集的程序集)。添加参考,您就应该设置好了。

You are indirectly referencing an assembly (you have added an assembly that refers to the offending assembly). Add the reference and you should be set.

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