when adding to a NameValueCollection you normally would do this:
nvc.Add("SOME LITERAL STRING", "MY VALUE")
but if you dont know the first parameter until you read it in from a file then you would want this:
nvc.Add(myVar, "MY VALUE")
this does not work! The NameValueCollection parameters...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.