Based on an ID I would like to automatically load an Image into my GUI. To do this I would like to be able to get all images out of the Resources.resx file in Visual Studio 2008 (using C#). I know I'm able to get one at a time if I know what they are:
Image myPicture = Properties.Resources.[name of file];
However what I'm looking for is along these lines...
foreach(Bitmap myPicture in Properties.Resources) {Do something...}