解决 C# 中的 Resharper 错误

发布于 2024-10-16 01:33:28 字数 221 浏览 1 评论 0原文

我使用VSTwain组件用扫描仪扫描图像,如何解决流动错误?

编辑后: 我的应用程序编译并正确运行,但 Resharper 显示以下错误。当我写“VSTwaint1”时。在 Visual Studio 中,红色方法无法在 Vs 中显示。但我的软件工作正常。 在此处输入图像描述

I Use VSTwain Component To Scan Images With Scanner.How Can I Solve Flowing Error?

After Edit:
My Application Compile And Run Correctly,But Resharper show the following error. When I write "VSTwaint1." in Visual Studio, Red Methods Can Not Show In Vs. But My Software work Correctly.
enter image description here

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

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

发布评论

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

评论(1

谁的年少不轻狂 2024-10-23 01:33:28

您可能需要使用正确的 using 指令导入命名空间。

从示例中,我想说的是:

using VSTWAINLib;

由于问题仅与 ReSharper 相关,因此可以尝试以下几种方法:

  • 重新启动 Visual Studio。 ReSharper 可能只是失去了同步。
  • 清除 ReSharper 缓存 - 它可能包含未重新生成的陈旧数据。 ReSharper -->选项 -->一般-->清除缓存

You probably need to import the namespace with the right using directive.

From the examples, I would say this is:

using VSTWAINLib;

Seeing as the issue is with ReSharper only, there are several things to try:

  • Restart Visual Studio. ReSharper may have simply gotten out of sync.
  • Clear the ReSharper cache - it might have stale data that didn't get regenerated. ReSharper --> Options --> General --> Clear Caches
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文