I have a string of the format \"key1=value1;key2=value2;key3=value3;\"
I need to convert it to a dictionary for the above mentioned key value pairs.
What wou
You could do this using JSON string, for example:
var dic = JsonConvert.DeserializeObject>("{'1':'One','2':'Two','3':'Three'}");