Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
var myClassInstance = new MyClass();
// blah
string jsonData = JsonConvert.SerializeObject(myClassInstance, Formatting.Indented, new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
TypeNameAssemblyFormat = System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment