I have a List of class objects that have email address and status data members. I am trying to convert these to a json, making sure to have the \"operations\" word on the ar
You can try with something like this:
using System.Web.Script.Serialization; var jsonSerialiser = new JavaScriptSerializer(); var json = jsonSerialiser.Serialize(data);