hi,
I need to copy a dictionary to another dictionary where the Dictionary contains class data as value for eg I want to copy the data of object A1 to A2 .Thanks for your time.
Class A
{
}
Class B
{
}
Main()
{
Dictionary<int,A> A1 = new Dictionary<int,A>(); // first dictionary obj
Dictionary<int,B> A2 = new Dictionary<int,B>(); // Second dictionary obj
}