Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 401 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 401 Bytes

Withywoods Common Serialization Library

This library can be used by an .NET project.

  • Extension to serialize / deserialize in JSON format
    • It currently uses Newtonsoft.Json but will be reviewed when a better solution will be integrated into .NET framework
using Withywoods.Serialization.Json;

var jsonString = myObject.ToJson();
var newObject = myString.FromJson<MyType>();