I want to create a data store to allow me to store some data.
The first idea was to create a dictionary which could have one key to the some values, but i have no idea how to store few different vaues, for example i need two values (string and Image). Can someone suggest how to realize that?
How else could I store this information??
In OOP world usually the data is represented in classes, which define it’s structure, behavior and responsibilities. From your example to store string and image you could create class:
and then your dictionary would be like: