字典问题的汇总
我正在使用 ASP.NET MVC2,我想根据 HtmlHelper 扩展内地址栏中的当前 URL 来创建一个 url。到目前为止我有这个:
url = helper.ViewContext.RequestContext.RouteData.Values
.Aggregate<KeyValuePair<String, Object>>((w, next) => w + next);
但这不能编译。有人对如何解决这个聚合函数有好主意吗?
I am using ASP.NET MVC2 and I would like to make up a url based on the current one in the address bar inside a HtmlHelper extension. So far I have this:
url = helper.ViewContext.RequestContext.RouteData.Values
.Aggregate<KeyValuePair<String, Object>>((w, next) => w + next);
But that does not compile. Anyone has a good idea on how to solve this Aggregate function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用这个:
但是既然你想要像 url 这样的东西,我建议你使用这个:
Grz,Kris。
Use this:
But since you want something like a url I suggest you use this:
Grz, Kris.