Hi I have two Dictionaries and I need to find a way to join them together.Here are the two dictionary types.
IDictionary<string, byte[]> dictionary1
IDictionary<IFileShareDocument, string> dictionary2
Out of this two dictionaries I have to create a third dictionary that will look like this
IDictionary<IFileShareDocument, byte[]> dictionary3
Both dictionaries have the exact same number of items and the string property of both them is the linking point.
What I would like is to be able to write something that would do somethign like this:
dictionary1.value join with dictionary2.key
where dictionary1.key == dictionary2.value
This statement should result in dictionary3.
Is there any way I can achieve this I can not seem to find a way to do this?