I have a problem when trying to convert a dictionary to list.
Example if I have a dictionary with template string as key and string as value. Then I wish to convert the
If you want convert Keys:
List listNumber = dicNumber.Keys.ToList();
else if you want convert Values:
List listNumber = dicNumber.Values.ToList();