namevauecollection

  1. G

    Passing a variable as the first parameter to a NameValueCollection.

    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...
Back
Top