How can I do System.Web.Script.Serialization in C#?

亡梦爱人 提交于 2019-12-01 15:05:00

I found how to make it work.
I don't know why they did this mess and I don't even understand why but here's the solution: Right click on project and add reference to:

System.Web.Extensions

than you can add the reference you need with:

using System.Web.Script.Serialization;

and this time it will work. (At least this is what I did on .NET framework 3.5)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!