After many hours on Google and here, i ask yours help, because not found any valid solution, but only wrong way.
I have many images into a dll as embedded resource, add this dll as reference to my application and need use this images into my application. What is the fastest way to do this? Any sample?
In Visual Studio go to the project properties of your dll and then to the tab resources. Change the access modifier from internal to public to make the resources easy accessible for your application.
In your application add a reference to your dll and access the images via the public resource class of the dll. Example for assign an image to a pciture box in your application:
private void Form1_Load(object sender, EventArgs e)
{
pictureBox1.Image = ClassLibrary1.Properties.Resources.SamplePicture;
}