1

在 VS 2012 Express for Windows Phone 中,我同时使用System和的导入System.Collections.Specialized,但尝试使用NameValueCollection.

查看对象浏览器,我看到它嵌套在 System.dll 中,但列出了多个版本的 System dll - 其中一些没有。我在自动完成中得到的内容与 System.dll 中的可用项目 NameValueCollection匹配,所以我想我需要找出正在使用的 System.dll,但我不知道该怎么做。

有人可以帮我使用NameValueCollection吗?

我拥有的系统版本是:2.0.0.0(有)-.NET 2,3,3.5 2.0.5.0 Runtime 2.0.5xxx(没有) Silverlight 4 2.0.5.0 Runtime 4.0.3xxx(没有) Windows Phone 8 4.0.0.0(有)-.NET 4.0

4

1 回答 1

4

NameValueCollection不适用于 Windows Phone。你可以Dictionary<string, string>改用。

于 2013-10-13T18:06:25.097 回答