With the following code:
string q = \"userID=16555&gameID=60&score=4542.122&time=343114\";
What would be the easiest way to par
System.Net.Http ParseQueryString extension method worked for me. I'm using OData query options and trying to parse out some custom parameters.
options.Request.RequestUri.ParseQueryString();
Seems to give me what I need.