If I have a string like so:
"Name=Irwin&Home=Caribbean&Preference=Coffee"
is there a method in C# that can convert that to a key-value pair similar to Request.QueryString?
If I have a string like so:
"Name=Irwin&Home=Caribbean&Preference=Coffee"
is there a method in C# that can convert that to a key-value pair similar to Request.QueryString?
You can also use the ToDictionary() method: