I have the following decleration:
private Dictionary<string, Dictionary<string, File>> listFiles = new Dictionary<string,Dictionary<string,File>>();
How do i add an item to the dictionary? Is there a better way to do something like this? Info: That stores a sourcefilename, destinationfilename, and the file itself.
Edit1: Just figured it out, all I want to store is 3 values, where the second object of the outer dictionary stores a dictionary object, which isn't really the best way to do it, seeing that it will always contain just one KeyValuePair.
Edit2: With File i meant the binary data.
Edit3: I have a unsorted file list, which i need to sort, and then send somewhere else.