I have a VB.NET program with lots of embedded resources which are images. Is there a way to get all the resources in an array so I can acces them in a for loop?
I currently have to do it this way:
images(1) = My.Resources.image1
images(2) = My.Resources.image2
'...
images(80) = My.Resources.image80