我创建了一个 vb.net Windows 窗体应用程序,它使用来自 url 的 web 服务。
url = "http://localhost:1264/api/products"
request = DirectCast(WebRequest.Create(url), HttpWebRequest)
response = DirectCast(request.GetResponse(), HttpWebResponse)
我想在配置部分(appConfig)中添加 url 字符串并在我的代码中使用这个字符串。我怎么能这样做。请帮忙