I'm running a C# program as a CGI script in Apache on Windows, which works just fine. However, I'm now trying to pass it query parameters, e.g.
http://localhost/cgi-bin/csharp_program.exe?hello=kitty&goodbye=world
I understand that my query parameters will be passed in the QUERY_STRING
environment variable, e.g.
`hello=kitty&goodbye=world`
What functions/classes in C# exist to parse these query parameters for me so that I don't need to reinvent the wheel and do it myself?