I'm looking for some suggestions on how to approach this windows form based application I'm in the very beginning stages of writing. Bare in mind Im still at the Hello World level of C#.
How should I populate a listbox with mock names for all jpegs in a folder whlie storing additional data about each jpeg. (data not included in the file properties)
for instance a folder containing:
DSC-001.jpg
DSC-002.jpg
Would populate a listbox as:
image1
image2
Each image will generate an entry in an array or table which will be modified later in the program:
image1 / DSC-001.jpg / some int values / string values.
Should this data be stored in an array? or an sql database?
Thanks, Trev.