I have two maps:
map< string, list < string > > map1;
map< string, list < string > > map2;
I have populated map1, now I want to copy the map1 contents into map2. So I simply did:
I have some operation for that the map1 fills with
1. kiran, c:\pf\kiran.mdf, c:\pf\kiran.ldf
2. test, c:\pf\test.mdf, c:\pf\test.mdf
And now I have to fill map2 with this content. And agian the map1 fills with info
1. temp, c:\pf\test.mdf, c:\pf\test.ldf
2. model, c:\model\model.mdf, c:\pf\model.ldf
Now I have to append these contents to map2. How do I do this?