今天对winform项目中的几个资源文件(图片)今天删除、改名之后,VS突然报错了:

The type or namespace name 'Resources' does not exist in the namespace 'xxxxx.xxxx.Properties' (are you missing an assembly reference?)

C#  The type or namespace name

也就是说,Resources找不到了。

网上找了一圈,没什么比较直接的答案,不过从一篇问答中得到了提示:

https://social.msdn.microsoft.com/Forums/vstudio/en-US/9da5e750-8e1e-4860-85b4-d0614b255165/the-type-or-namespace-name-resources-does-not-exist-in-the-namespace-xxxxxxxxxproperties-are

也就是检查一下Resources.resx 文件是否存在。

实际检查下来,这个文件是存在的,

C#  The type or namespace name

双击打开它,里面列出了资源文件。发现其中有一个资源失效了(直接在文件夹中删除了):

C#  The type or namespace name

把这个已经失效的资源删除,报错提示就消失了,一切恢复正常。

C#  The type or namespace name

问题解决。

总结:对于资源文件的更改,要在VS中打开Resources.resx进行操作。如果直接在磁盘上删除,容易导致一些问题。