JSON data returned from WCF service contains escape characters
问题 I have a working WCF - WPF application working, however I'm looking for some optimization. Below is my code where a WCF restful service is exposing a JSON array, and a WPF UI is receiving it without any problem. WCF: public clsStatus[] GetAllStatus() { DataTable dt = new DataTable(); List<clsStatus> lstGetAllStatus = new List<clsStatus>(); try { dt = // My Data Table foreach (DataRow dr in dt.Rows) { dcStatus objGetAllStatus = new clsStatus(); objGetAllStatus.Id = Convert.ToInt32(dr["Id"]);