I was able to use code in this link to view a list of items in a .resx file
using System.Collections;
using System.Globalization;
using System.Resources;
...
string resKey;
ResourceSet resourceSet = MyResourceClass.ResourceManager.GetResourceSet(CultureInfo.CurrentUICulture, true, true);
foreach (DictionaryEntry entry in resourceSet)
{
resKey = entry.Key.ToString();
ListBox.Items.Add(resKey);
}
What I want to do now, is create an accessable list or array. How do I go about doing this? To clarify, I wan't to create an array of Image containers, and use a loop to load the images in the .resx file. Thanks