如何在 C# 应用程序项目(无 Asp.net)上序列化为 json?
我用 C# 编写了一个应用程序项目。 有没有办法将集合序列化为 Json 字符串格式? 如果我使用 C#4? C#3?
另一个问题:在 Visual Studio 2010 Ultimate 中,我记得我可以从网络搜索并下载 dll:Web Downlaoder 等。我再也找不到它了。有人知道吗?
TIA
I wrote an application project in c#.
Is there a way to serialize a collection to Json string format?
If I use C#4? C#3?
Another q: within Visual Studio 2010 ultimate I remember I could search and download dll from the web: Web Downlaoder or so. I cnnot find it again. Does any one know it?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(5)
迷离°2024-12-14 17:19:47
使用 Visual Studio 扩展管理器安装 Nuget http://nuget.org/,在 nuget 中查找 json.net (右键单击在您的项目上并选择管理 nuget 包),将其添加到您的项目中,您可以使用此库进行序列化,而无需添加对 system.web 的依赖项
╰ゝ天使的微笑2024-12-14 17:19:47
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
JavaScriptSerializer 是一种方法:
JavaScriptSerializer is one way to go: