gpt4 book ai didi

c# - 将字典连接到字符串 "key=val&key=val..."

转载 作者:太空宇宙 更新时间:2023-11-03 22:17:44 27 4
gpt4 key购买 nike

我将查询字符串传递到我的 Windows Phone 应用程序中的页面:page.xaml?key=val&key2=val .

我收到的是 NavigationContext.QueryString ,并想将其传递给 Web 服务:http://ws.site.com/key=val&key2=val

NavigationContext.QueryStringDictionary<string, string>有没有简单的方法来连接它?

最佳答案

当然:

var entries = NavigationContext.QueryString.Select
(x => Uri.EscapeDataString(x.Key) + "=" + Uri.EscapeDataString(x.Value));

string joined = string.Join("&", entries.ToArray());

(在 .NET 4 中,您可以避免转换为数组,但在 WP7 上不行。)

关于c# - 将字典连接到字符串 "key=val&key=val...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4428183/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com