Say I have 3 Dictionary<string, string>
objects. All 3 have the same key like so:
Dic1 Dic2 Dic3 K V K V K V A s A z A i B d B e B u C a C r C o D w D t D p
Now, I would want to combine these dictionaries in to one DataTable, the DataTable should look like:
A s z i B d e u C a r o D w t p
Any pointers or ideas on to how to get from the seperate dictionaries to the combined ones in the DataTable?