Visual Studio的Intellisense有问题:CS0234命名空间中不存在类型或命名空间名称< name>< namespace>

0tdrvxhp  于 2023-10-23  发布在  其他
关注(0)|答案(1)|浏览(198)

我正在开发一个仓库,直到最近我才遇到问题。我的同事也没有在他们的机器上遇到问题,所以我相信这是我的Visual Studio的问题。
我不断收到数百个错误,如下所示:
Error CS0234 The type or namespace name <name> does not exist in the namespace <namespace> (are you missing an assembly reference?)
好像所有的参考资料都坏了。但是当我构建时,没有构建错误。只是智能感知错误。
有人知道出了什么问题吗?

k97glaaz

k97glaaz1#

您遇到的情况是可能遇到的常见问题。
这种情况是由.vs文件夹中存储的某些intellisense信息引起的。
看看这个
Still forced to delete ".vs" folder to fix build errors or IntelliSense errors
删除/移除.vs文件夹并重新启动visual studio后,visual studio将重新生成一个包含新intellisense信息的新.vs文件夹。
顺便说一句,这种行为在官方文件中没有记录。

相关问题