I have a dictionary with developers and studios , as dictionary<devid,Tuple<developer,Studio>> where devid is the ID, developer and studios are objectd.
Can this dictionaty have more than one tuple associated to the key? Eg
devid 12345 Developer 1 studio 1 devid 12345 Deveoper 1 studio 2 Devid always corresponds to the same developer. So can key 12345 correspond to both studio 1 and studio 2 as different records by adding to this dictionary or can 1 key only have one combination of developer and studio?
Tuple<ulong, object>into many. Hint: arrays and lists are good ways of storing multiple items.Dictionary<ulong, List<Tuple<ulong, Object>>>then? Now eackulongkey corresponds to a collection (i.e. many) tuples.