Reputation: 48522
I just added an image resource to my assembly via the Resources tab in the project properties of my project. The resource is a PNG image. Now when I load the assembly, I'm getting the error shown below. This is occurring in VS 2010.
System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture.
Anyone know what is causing this?
Thanks very much.
Upvotes: 1
Views: 1347
Reputation: 34598
[namespace of your project]
followed by resources.foobar.png
, for example, suppose the namespace is 'foobar' then it would be "foobar.resources.foobar.png"Upvotes: 1