I don't know what they are called, that's why I can't find a solution. I have a querystring looks like an array
params[name]=john¶ms[age]=25¶ms[country]=ru
Is there a way to parse these parameters as string[]
or Dictionary<string, string>
?
UPD: On php this type of query string is being parsed automaticaly using
$params = $_GET['params'];
$params['name']
But I can't find an equivalent on C#