I have a Clickonce application that is launched from the start menu (local). I would like to be able to specify a parameter so that the application can load certain data. Th
You pass the parameters as a query string and use HttpUtility.ParseQueryString, as discussed in this MSDN article.