Say that i have a generic dictionary with data like this (I hope the notation is clear here):
{ "param1" => "value1", "param2" => "value2", "param3" => "value3" }
I'm trying to use the Enumerable.Aggregate function to fold over each entry in the dictionary and output something like this:
"/param1= value1; /param2=value2; /param3=value3"
If I were aggregating a list, this would be easy. With the dictionary, I'm getting tripped up by the key/value pairs.