I am looking for a way to conveniently store image files or any kind of file, i.e. without just saving them somewhere in my project folders and keeping track of the files in some list/xml/something.
What I am looking for is something like a ‘bundle’, which I can easily access and query in c#/.net .. e.g. I can easily find out what files it contains.
The whole point is that I don’t want to have a messy subfolder containing all those files and I want to avoid using the filesystem’s querying, access and referencing methods.
Is there something out there you could recommend?
Learn about resources in NET.
Resources in Applications
Basically you can package resources to a dll and access them with a ResourceManager and a ResourceSet