I want to find an easier way of accessing images in a satellite DLL, so I was trying to put them into a List, like this:
{
images = new List<Bitmap>();
// 1. The Fool
using (var ms = new MemoryStream(Properties.Resources.tarot_1_TheFool))
{
Bitmap bmp = new Bitmap(ms);
images.Add(bmp);
}
}
Is there a way to enumerate through Settings images, or do I have to load each image via a MemoryStream object as shown in above code?