Convert Viewmodel to JSON string using C#, convert json string to JSON Format using C#

//CONVERT POST PARAMETERS INTO JSON-SERIALIZE
var json = JsonConvert.SerializeObject(model);
// Convert Json String to JSON Format in C#
dynamic responseData = Newtonsoft.Json.Linq.JObject.Parse(_responseData);

Comments

Popular posts from this blog

Calculate Mortgage in c# using console application

Tree view in winforms using c#