I have problem when trying to convert dictionary to list.
Example if I have dictionary with template string as key and string as value. Then i wish to convert dictionary key to list collection as string.
Dictionary<string, string> dicNumber = new Dictionary<string, string>();
List<string> listNumber = new List<string>();
dicNumber.Add("1", "First");
dicNumber.Add("2", "Second");
dicNumber.Add("3", "Third");
// So the code may something look like this
//listNumber = dicNumber.Select(??????);
Please help thx.
Regard