I have some resources in a C# Assembly which I address by
byte[] foob = Properties.Resources.foo;
byte[] barb = Properties.Resources.bar;
...
I would like to iterate through these resources without having to keep an index of what I have added. Is there a method that returns all the resources?