I have problem to edit from one dictionary to another dictionary.
Dictionary<string, string> firstDic = new Dictionary<string, string>();
firstDic.Add("one", "to make link");
firstDic.Add("two", "line break");
firstDic.Add("three", "put returns");
Dictionary<string, string> secondDic= new Dictionary<string, string>();
secondDic.Add("two", "line feeding");
// How could I write code something to change firstDic following from secondDic
// So dictionary firstDic will contain pair data
// "one" = "to make link"
// "two" = "line feeding"
// "three" = "put returns"
// The code may like
// firstDict = firstDict.Select(?????????)
Regard.